Update init.lua

This commit is contained in:
Ariel 2024-03-05 17:21:18 +08:00 committed by GitHub
parent bbaf39e243
commit c644b0b894
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 1 deletions

View File

@ -14,6 +14,14 @@ vim.cmd("set updatetime=700")
vim.cmd("set whichwrap+=<,>,[,]") 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.opt.listchars = {
eol = "",
tab = "\\ ",
trail = "",
precedes = "«",
extends = "»"
}
vim.diagnostic.config({ vim.diagnostic.config({
update_in_insert = true, update_in_insert = true,
float = { border = "single" }, float = { border = "single" },
@ -249,7 +257,9 @@ local plugins = {
end, end,
}, },
{ "lukas-reineke/indent-blankline.nvim", main = "ibl", opts = {} }, { "lukas-reineke/indent-blankline.nvim", main = "ibl", opts = {} },
{ 'itchyny/vim-cursorword' } { 'itchyny/vim-cursorword' },
{ 'm-demare/hlargs.nvim' },
{ 'chentoast/marks.nvim' }
} }
local opts = { local opts = {
} }
@ -605,3 +615,7 @@ require("ibl").setup {
indent = { highlight = highlight, char = "" }, indent = { highlight = highlight, char = "" },
scope = { enabled = true }, scope = { enabled = true },
} }
require('hlargs').setup()
require('marks').setup()