Update init.lua

This commit is contained in:
Ariel 2024-03-05 18:34:26 +08:00 committed by GitHub
parent 66c6d0dea2
commit 5b061fbf38
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -15,6 +15,9 @@ vim.cmd("set whichwrap+=<,>,[,]")
vim.cmd("set relativenumber") vim.cmd("set relativenumber")
vim.cmd("set iskeyword-=_") vim.cmd("set iskeyword-=_")
vim.cmd("set list") vim.cmd("set list")
vim.opt.guicursor = {
"i:ver100-blinkon500-blinkoff500,a:ver100",
}
vim.opt.listchars = { vim.opt.listchars = {
eol = "", eol = "",
tab = "", tab = "",
@ -257,7 +260,7 @@ local plugins = {
end, end,
}, },
{ "lukas-reineke/indent-blankline.nvim", main = "ibl", opts = {} }, { "lukas-reineke/indent-blankline.nvim", main = "ibl", opts = {} },
{ 'itchyny/vim-cursorword' }, { 'arielherself/vim-cursorword' },
{ 'm-demare/hlargs.nvim' }, { 'm-demare/hlargs.nvim' },
{ 'chentoast/marks.nvim' } { 'chentoast/marks.nvim' }
} }