Compare commits

..

2 commits

Author SHA1 Message Date
af0451840d neovim: ignore Godot .uid files 2025-03-15 14:27:58 -05:00
85c24c5129 neovim: set termguicolors.true 2025-03-15 14:27:15 -05:00
2 changed files with 6 additions and 0 deletions

View file

@ -38,6 +38,7 @@ opt.smartcase = true -- ...unless mixed case is used in se
opt.backspace = "indent,eol,start" -- allow backspace on indent, eol, or insert mode start position
opt.cursorline = true
opt.swapfile = false -- disable swap file
opt.termguicolors = true
-- highlight trailing white space
vim.fn.matchadd('errorMsg', [[\s\+$]])

View file

@ -29,6 +29,11 @@ return {
git = {
ignore = false
},
filters = {
custom = {
'*.uid', -- ignore Godot .uid files
},
},
})
vim.keymap.set('n', '\\e', '<cmd>NvimTreeToggle<cr>', {desc = "Toggle file explorer" })