enc: fix nvim-tree exploler error

This commit is contained in:
Pojok Code 2024-10-11 21:00:37 +07:00
parent 2ce30970f6
commit 30ba4f5233
9 changed files with 414 additions and 11 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!