优化界面显示

This commit is contained in:
LingZhaoHui 2024-06-23 23:53:40 +08:00
parent 84ce36d886
commit 829209426a
Signed by: zeekling
GPG Key ID: D96E4E75267CA2CC
2 changed files with 26 additions and 6 deletions

View File

@ -69,7 +69,18 @@ return {
{
"nvimdev/lspsaga.nvim",
config = function()
require("lspsaga").setup({})
require("lspsaga").setup({
symbol_in_winbar = {
enable = true,
},
code_action = {
enable = false,
},
ui = {
enable = true,
code_action = "",
},
})
end,
dependencies = {
"nvim-treesitter/nvim-treesitter", -- optional

View File

@ -176,11 +176,6 @@ return {
})
end,
},
{
"folke/trouble.nvim",
opts = {},
cmd = "Trouble",
},
{
"stevearc/aerial.nvim",
opts = {},
@ -198,4 +193,18 @@ return {
"nvim-tree/nvim-web-devicons",
},
},
{
"shellRaining/hlchunk.nvim",
event = { "BufReadPre", "BufNewFile" },
config = function()
require("hlchunk").setup({
chunk = {
enable = false,
},
indent = {
enable = true,
},
})
end,
},
}