aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLibravatar sommerfeld <[email protected]>2026-04-17 10:53:09 +0100
committerLibravatar sommerfeld <[email protected]>2026-04-17 10:53:09 +0100
commit597faa1593a4192c018d5a3da6c56adee6bd5a1d (patch)
tree7ddd657bcca5975b9c9077ee54c46eac85999074
parentd87665b0c7e7d119aab82012b221da12a6842dc2 (diff)
downloaddotfiles-597faa1593a4192c018d5a3da6c56adee6bd5a1d.tar.gz
dotfiles-597faa1593a4192c018d5a3da6c56adee6bd5a1d.tar.bz2
dotfiles-597faa1593a4192c018d5a3da6c56adee6bd5a1d.zip
chore: remove synmaxcol, showmatch, and static cmdheight
- synmaxcol=500: irrelevant with treesitter handling all highlighting - showmatch=true: redundant with blink.pairs, causes annoying cursor jump - cmdheight=2: conflicts with auto-cmdheight.nvim which manages it dynamically
-rw-r--r--home/.config/nvim/lua/cfg/options.lua3
1 files changed, 0 insertions, 3 deletions
diff --git a/home/.config/nvim/lua/cfg/options.lua b/home/.config/nvim/lua/cfg/options.lua
index 1e64f49..4b6d588 100644
--- a/home/.config/nvim/lua/cfg/options.lua
+++ b/home/.config/nvim/lua/cfg/options.lua
@@ -7,7 +7,6 @@ opt.shadafile = "NONE"
opt.number = true
opt.cursorline = true
opt.signcolumn = "auto:2"
-opt.showmatch = true
opt.laststatus = 3
opt.expandtab = true
@@ -30,14 +29,12 @@ opt.textwidth = 80
opt.colorcolumn = "+1"
vim.opt.formatoptions:remove("t")
-opt.cmdheight = 2
opt.messagesopt = "wait:5000,history:500"
vim.opt.shortmess:append({ a = true })
opt.updatetime = 250
opt.timeoutlen = 300
-opt.synmaxcol = 500
vim.opt.completeopt = { "menuone", "noselect", "popup", "fuzzy", "nearest" }
opt.scrolloff = 999