feat(nvim): more modernization

This commit is contained in:
Barrett Ruth 2026-03-01 12:17:16 -05:00
parent 98ea8609fd
commit 8e9d8cd00d
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
16 changed files with 533 additions and 551 deletions

View file

@ -14,9 +14,8 @@ o.expandtab = true
o.exrc = true
o.secure = true
o.foldcolumn = '1'
o.foldexpr = 'v:lua.vim.treesitter.foldexpr()'
o.foldlevel = 1
o.foldlevel = 99
o.foldmethod = 'expr'
o.foldtext = ''
@ -24,6 +23,10 @@ opt.fillchars = {
eob = ' ',
vert = '',
diff = '',
foldopen = 'v',
foldclose = '>',
foldsep = ' ',
foldinner = ' ',
}
opt.iskeyword:append('-')
@ -42,6 +45,8 @@ opt.matchpairs:append('<:>')
o.number = true
o.relativenumber = true
o.signcolumn = 'no'
o.statuscolumn = '%s%C %=%{v:relnum?v:relnum:v:lnum} '
opt.path:append('**')