summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-05-18 20:09:00 +0200
committerThomas Vanbesien <tvanbesi@proton.me>2026-05-18 21:41:10 +0200
commit55d3b53816c760973379c2231699b2e7fcce02d8 (patch)
tree08ccd9c418284c8745ccdba102159798b1944353
parentdb2a2fe0848c0d7d004ac3310bca4b837229aa7c (diff)
downloaddotfiles-55d3b53816c760973379c2231699b2e7fcce02d8.tar.gz
dotfiles-55d3b53816c760973379c2231699b2e7fcce02d8.zip
misc: fix wording, comments, typos
-rw-r--r--.config/bash/inputrc4
-rw-r--r--.config/fzf/fzf.bash8
-rw-r--r--.config/nvim/init.lua8
-rw-r--r--.config/tmux/tmux.conf2
-rw-r--r--.local/share/dotfiles/README.md2
5 files changed, 8 insertions, 16 deletions
diff --git a/.config/bash/inputrc b/.config/bash/inputrc
index c56068e..6f72f65 100644
--- a/.config/bash/inputrc
+++ b/.config/bash/inputrc
@@ -32,9 +32,9 @@ set menu-complete-display-prefix on
set editing-mode vi # Vi keybindings
set match-hidden-files off # Don't match hidden files, unless a leading '.' is typed explicitely
-set completion-ignore-case on # Ignore case when mathching completions
+set completion-ignore-case on # Ignore case when matching completions
set search-ignore-case on # Ignore case when searching
-set skip-completed-text on # Don't insert match when when completing in the middle of a word
+set skip-completed-text on # Don't insert match when completing in the middle of a word
set completion-query-items 100 # Prompt before showing more than this number of completions
set completion-display-width 100 # 100 columns for completion results
set print-completions-horizontally off # Sort completions horizontally
diff --git a/.config/fzf/fzf.bash b/.config/fzf/fzf.bash
index f567a6d..5ceed69 100644
--- a/.config/fzf/fzf.bash
+++ b/.config/fzf/fzf.bash
@@ -58,12 +58,4 @@ export FZF_ALT_C_OPTS="
--footer '$fzf_alt_c_usage'
"
-# ——————————————————————————————————————————————————————————————————————————————
-# ** fuzzy completion
-#
-# See https://github.com/junegunn/fzf#customizing-fuzzy-completion-for-bash-and-zsh
-# ——————————————————————————————————————————————————————————————————————————————
-
-# ——————————————————————————————————————————————————————————————————————————————
-
eval "$(fzf --bash)"
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua
index c8fdc19..6803d2d 100644
--- a/.config/nvim/init.lua
+++ b/.config/nvim/init.lua
@@ -88,7 +88,7 @@ vim.keymap.set("n", "<Leader>bw", toggle_wrap, { desc = "Toggle text wrap" })
vim.keymap.set("n", "<M-z>", "zA", { desc = "Toggle fold (recursively) under cursor" })
vim.keymap.set("n", "ZR", vim.cmd.SessionRestart, { desc = "Save and load default session and restart" })
vim.keymap.set("n", "ZZ", vim.cmd.SessionExitSave, { desc = "Save to default session and exit" })
-vim.keymap.set("n", "ZQ", vim.cmd.SessionExitNoSave, { desc = "Save to default session and exit" })
+vim.keymap.set("n", "ZQ", vim.cmd.SessionExitNoSave, { desc = "Quit without saving session" })
vim.keymap.set("t", "<C-\\><C-\\>", "<C-\\><C-n>", { desc = "Exit terminal mode" })
vim.keymap.set("n", "<Leader>mm", "<Cmd>messages<CR>", { desc = "Show all messages" })
vim.keymap.set("n", "<Leader>mc", "<Cmd>messages clear<CR>", { desc = "Clear all messages" })
@@ -104,7 +104,7 @@ vim.keymap.set({ "n", "i" }, "<M-j>", "<C-w>j", { desc = "Move down a window" })
vim.keymap.set({ "n", "i" }, "<M-k>", "<C-w>k", { desc = "Move up a window" })
vim.keymap.set({ "n", "i" }, "<M-l>", "<C-w>l", { desc = "Move right a window" })
vim.keymap.set("t", "<M-h>", "<C-\\><C-n><C-w>h", { desc = "Move left a window" })
-vim.keymap.set("t", "<M-j>", "<C-\\><C-n><C-w>j", { desc = "Move down a windowd" })
+vim.keymap.set("t", "<M-j>", "<C-\\><C-n><C-w>j", { desc = "Move down a window" })
vim.keymap.set("t", "<M-k>", "<C-\\><C-n><C-w>k", { desc = "Move up a window" })
vim.keymap.set("t", "<M-l>", "<C-\\><C-n><C-w>l", { desc = "Move right a window" })
-- Navigate tab
@@ -170,8 +170,8 @@ vim.opt.writebackup = true -- Keep backup after writing file
vim.opt.number = true -- Show line number
vim.opt.relativenumber = true -- Show relative line number
vim.opt.numberwidth = 4 -- Minimal number of columns for line number (includes the space before the text)
-vim.opt.signcolumn = "auto" -- Always show sign column
-vim.opt.foldcolumn = "0" -- Fixed number of fold columns
+vim.opt.signcolumn = "auto" -- Show sign column when there is a sign to display
+vim.opt.foldcolumn = "0" -- Disable foldcolumn
-- Wrapping
vim.opt.wrap = false -- Don't wrap text by default
vim.opt.showbreak = "+++ " -- String to show wrapped lines
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf
index 0431696..3a6be99 100644
--- a/.config/tmux/tmux.conf
+++ b/.config/tmux/tmux.conf
@@ -1,7 +1,7 @@
# tmux configuration file
# See `man 1 tmux`
-# Ran when tmux's server start (not the client)
+# Ran when the tmux's server starts (not the client)
# To reload: `source-file ~/.config/tmux/tmux.conf`
set-option -g default-shell /usr/bin/bash
diff --git a/.local/share/dotfiles/README.md b/.local/share/dotfiles/README.md
index 8382007..1d9e73c 100644
--- a/.local/share/dotfiles/README.md
+++ b/.local/share/dotfiles/README.md
@@ -3,7 +3,7 @@
The repository for my configurations, my tools, my setup. Each branch is for a specific environment (OS, distribution,
DE, whatever). It is inspired by [this][0].
-A dotfiles repository index can be anywhere, but the working tree must be at `HOME`. This is how to start from scratch:
+A dotfiles git directory can be anywhere, but the working tree must be at `HOME`. This is how to start from scratch:
```bash
git init --bare "$DOTFILES_DIR"