From 55d3b53816c760973379c2231699b2e7fcce02d8 Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Mon, 18 May 2026 20:09:00 +0200 Subject: misc: fix wording, comments, typos --- .config/bash/inputrc | 4 ++-- .config/fzf/fzf.bash | 8 -------- .config/nvim/init.lua | 8 ++++---- .config/tmux/tmux.conf | 2 +- .local/share/dotfiles/README.md | 2 +- 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", "bw", toggle_wrap, { desc = "Toggle text wrap" }) vim.keymap.set("n", "", "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", "", "", { desc = "Exit terminal mode" }) vim.keymap.set("n", "mm", "messages", { desc = "Show all messages" }) vim.keymap.set("n", "mc", "messages clear", { desc = "Clear all messages" }) @@ -104,7 +104,7 @@ vim.keymap.set({ "n", "i" }, "", "j", { desc = "Move down a window" }) vim.keymap.set({ "n", "i" }, "", "k", { desc = "Move up a window" }) vim.keymap.set({ "n", "i" }, "", "l", { desc = "Move right a window" }) vim.keymap.set("t", "", "h", { desc = "Move left a window" }) -vim.keymap.set("t", "", "j", { desc = "Move down a windowd" }) +vim.keymap.set("t", "", "j", { desc = "Move down a window" }) vim.keymap.set("t", "", "k", { desc = "Move up a window" }) vim.keymap.set("t", "", "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" -- cgit v1.3.1