summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Abbott <otg@gabbott.dev>2023-02-24 22:57:09 +0000
committerGeorge Abbott <otg@gabbott.dev>2023-02-24 22:57:09 +0000
commit0d78a0d7c577b2dda06d6ca3f2e066d15e7a1fea (patch)
tree83672ca7bfcb64b653e676ea93e65c98333cfc61
parent645f614cde6708204590152e94f18a6be7d51cf6 (diff)
Added aliases for :w
-rw-r--r--init.vim11
1 files changed, 10 insertions, 1 deletions
diff --git a/init.vim b/init.vim
index 3612552..a39467c 100644
--- a/init.vim
+++ b/init.vim
@@ -4,5 +4,14 @@ set ignorecase
set smartcase
set autochdir
set confirm
-set shortmess=a " Abbreviate messages without info loss.
+" set shortmess=a " Abbreviate messages without info loss.
set colorcolumn=80
+
+command W w
+command Wq wq
+command Q q
+command Wq wq
+command WQ wq
+
+autocmd TextYankPost * silent! lua vim.highlight.on_yank { higroup='IncSearch', timeout=4000 }
+