nvim: refactor cmds into commands

This commit is contained in:
Primrose 2025-07-08 15:44:05 +02:00
parent 1bdcd3386e
commit 7ae86384f6
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
14 changed files with 89 additions and 147 deletions

View file

@ -1,3 +1,5 @@
M = {}
vim.o.hlsearch = false
vim.o.incsearch = true
vim.o.ignorecase = true
@ -34,3 +36,7 @@ vim.o.list = true
vim.o.splitright = true
vim.o.splitbelow = true
function M.matchit_let_in() vim.b.match_words = [[\<let\>:\<in\>]] end
return M