style: nvim lsp border

This commit is contained in:
DACHXY 2025-01-26 22:12:10 +08:00
parent d210845352
commit 7a2679afdd
8 changed files with 282 additions and 78 deletions

View file

@ -0,0 +1,32 @@
return {
{
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",
dependencies = {
{
"s1n7ax/nvim-window-picker", -- for open_with_window_picker keymaps
version = "2.*",
config = function()
require("window-picker").setup({
filter_rules = {
include_current_win = false,
autoselect_one = true,
-- filter using buffer options
bo = {
-- if the file type is one of following, the window will be ignored
filetype = { "neo-tree", "neo-tree-popup", "notify" },
-- if the buffer type is one of following, the window will be ignored
buftype = { "terminal", "quickfix" },
},
},
})
end,
},
},
opts = {
window = {
position = "right",
},
},
},
}