dotfiles/.config/nvim/lua/config/plugins/neotree.lua

41 lines
1.1 KiB
Lua

vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
vim.pack.add({
"https://github.com/nvim-lua/plenary.nvim",
"https://github.com/MunifTanjim/nui.nvim",
"https://github.com/nvim-tree/nvim-web-devicons",
{
src = "https://github.com/nvim-neo-tree/neo-tree.nvim",
version = vim.version.range("3"),
},
})
require("neo-tree").setup({
close_if_last_window = true,
popup_border_style = "rounded",
enable_git_status = true,
enable_diagnostics = true,
filesystem = {
hijack_netrw_behavior = "open_current",
follow_current_file = { enabled = true },
use_libuv_file_watcher = true,
},
window = {
width = 30,
mappings = {
["<space>"] = "none",
["<cr>"] = "open",
["o"] = "open",
["a"] = { "add", config = { show_path = "relative" } },
["d"] = "delete",
["r"] = "rename",
["y"] = "copy_to_clipboard",
["x"] = "cut_to_clipboard",
["p"] = "paste_from_clipboard",
["q"] = "close_window",
},
},
})
vim.keymap.set("n", "<leader>e", ":Neotree toggle<CR>", { desc = "Toggle Neo-tree" })