enc: fix nvim-tree error exploler

This commit is contained in:
Pojok Code 2024-10-11 21:02:53 +07:00
parent ab014bb8b5
commit 0ee6631931
10 changed files with 444 additions and 47 deletions

View file

@ -86,6 +86,16 @@ vim.filetype.add({
},
})
-- config cursor
vim.opt.guicursor = {
"n-v:block", -- Normal, Visual, Command mode: block cursor
"i-ci-ve-c:ver25", -- Insert, Command-line Insert, Visual mode: vertical bar cursor
"r-cr:hor20", -- Replace, Command-line Replace mode: horizontal bar cursor
"o:hor50", -- Operator-pending mode: horizontal bar cursor
"a:blinkwait700-blinkoff400-blinkon250", -- Blinking settings
"sm:block-blinkwait175-blinkoff150-blinkon175", -- Select mode: block cursor with blinking
}
-- Autoformat
-- augroup _lsp
-- autocmd!