Compare commits

...

2 Commits

Author SHA1 Message Date
b559a7f2ef
nvim: 自動autopair補齊優化 2025-05-10 15:26:21 +08:00
11fd5e8de1
nvim: 修改indent-blankline選取配色 2025-05-10 15:17:17 +08:00
2 changed files with 23 additions and 7 deletions

View File

@ -25,4 +25,20 @@ return {
map_c_w = false, -- map <c-w> to delete a pair if possible
},
},
{
"windwp/nvim-ts-autotag",
event = "InsertEnter",
config = true
},
{
"kylechui/nvim-surround",
version = "^3.0.0", -- Use for stability; omit to use `main` branch for the latest features
event = "VeryLazy",
config = function()
require("nvim-surround").setup({
-- Configuration here, or leave empty to use defaults
})
end
},
}

View File

@ -10,13 +10,13 @@ return {
-- require("ibl").setup(opts)
local highlight = {
"RainbowRed",
"RainbowYellow",
"RainbowBlue",
"RainbowOrange",
"RainbowGreen",
"RainbowViolet",
"RainbowCyan",
"RainbowGreen",
"RainbowCyan",
"RainbowYellow",
"RainbowBlue",
"RainbowOrange",
"RainbowViolet",
"RainbowRed",
}
local hooks = require "ibl.hooks"
-- create the highlight groups in the highlight setup hook, so they are reset