mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-24 09:48:51 +02:00
enc: fix nvim-tree exploler error
This commit is contained in:
parent
2ce30970f6
commit
30ba4f5233
9 changed files with 414 additions and 11 deletions
|
@ -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!
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue