优化界面显示
This commit is contained in:
parent
84ce36d886
commit
829209426a
@ -69,7 +69,18 @@ return {
|
|||||||
{
|
{
|
||||||
"nvimdev/lspsaga.nvim",
|
"nvimdev/lspsaga.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("lspsaga").setup({})
|
require("lspsaga").setup({
|
||||||
|
symbol_in_winbar = {
|
||||||
|
enable = true,
|
||||||
|
},
|
||||||
|
code_action = {
|
||||||
|
enable = false,
|
||||||
|
},
|
||||||
|
ui = {
|
||||||
|
enable = true,
|
||||||
|
code_action = "",
|
||||||
|
},
|
||||||
|
})
|
||||||
end,
|
end,
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"nvim-treesitter/nvim-treesitter", -- optional
|
"nvim-treesitter/nvim-treesitter", -- optional
|
||||||
|
@ -176,11 +176,6 @@ return {
|
|||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"folke/trouble.nvim",
|
|
||||||
opts = {},
|
|
||||||
cmd = "Trouble",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"stevearc/aerial.nvim",
|
"stevearc/aerial.nvim",
|
||||||
opts = {},
|
opts = {},
|
||||||
@ -198,4 +193,18 @@ return {
|
|||||||
"nvim-tree/nvim-web-devicons",
|
"nvim-tree/nvim-web-devicons",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"shellRaining/hlchunk.nvim",
|
||||||
|
event = { "BufReadPre", "BufNewFile" },
|
||||||
|
config = function()
|
||||||
|
require("hlchunk").setup({
|
||||||
|
chunk = {
|
||||||
|
enable = false,
|
||||||
|
},
|
||||||
|
indent = {
|
||||||
|
enable = true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user