45 lines
1.1 KiB
Lua
45 lines
1.1 KiB
Lua
vim.g.loaded_netrw = 1
|
|
vim.g.loaded_netrwPlugin = 1
|
|
|
|
return {
|
|
{
|
|
"nvim-neo-tree/neo-tree.nvim",
|
|
branch = "v3.x",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"MunifTanjim/nui.nvim",
|
|
"nvim-tree/nvim-web-devicons",
|
|
},
|
|
},
|
|
{
|
|
"antosha417/nvim-lsp-file-operations",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-neo-tree/neo-tree.nvim", -- makes sure that this loads after Neo-tree.
|
|
},
|
|
config = function()
|
|
require("lsp-file-operations").setup()
|
|
end,
|
|
},
|
|
{
|
|
"s1n7ax/nvim-window-picker",
|
|
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,
|
|
},
|
|
}
|
|
|