mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
147 lines
5.1 KiB
Lua
147 lines
5.1 KiB
Lua
return {
|
|
"nvim-neo-tree/neo-tree.nvim",
|
|
branch = "v3.x",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
|
|
"MunifTanjim/nui.nvim",
|
|
-- {"3rd/image.nvim", opts = {}}, -- Optional image support in preview window: See `# Preview Mode` for more information
|
|
},
|
|
lazy = false, -- neo-tree will lazily load itself
|
|
---@module "neo-tree"
|
|
---@type neotree.Config?
|
|
opts = {
|
|
window = {
|
|
mappings = {
|
|
["<space>"] = "noop", -- Pass it to leader
|
|
["e"] = "noop",
|
|
["<2-LeftMouse>"] = "open",
|
|
["<cr>"] = "open",
|
|
["i"] = "open",
|
|
["<esc>"] = "cancel", -- close preview or floating neo-tree window
|
|
["P"] = { "toggle_preview", config = { use_float = true, use_snacks_image = true } },
|
|
-- Read `# Preview Mode` for more information
|
|
-- ["i"] = "focus_preview",
|
|
["S"] = "open_split",
|
|
["s"] = "open_vsplit",
|
|
["<C-h>"] = "open_vsplit",
|
|
-- ["S"] = "split_with_window_picker",
|
|
-- ["s"] = "vsplit_with_window_picker",
|
|
["t"] = "open_tabnew",
|
|
-- ["<cr>"] = "open_drop",
|
|
-- ["t"] = "open_tab_drop",
|
|
["w"] = "open_with_window_picker",
|
|
--["P"] = "toggle_preview", -- enter preview mode, which shows the current node without focusing
|
|
["C"] = "close_node",
|
|
-- ['C'] = 'close_all_subnodes',
|
|
["z"] = "close_all_nodes",
|
|
--["Z"] = "expand_all_nodes",
|
|
["a"] = {
|
|
"add",
|
|
-- this command supports BASH style brace expansion ("x{a,b,c}" -> xa,xb,xc). see `:h neo-tree-file-actions` for details
|
|
-- some commands may take optional config options, see `:h neo-tree-mappings` for details
|
|
config = {
|
|
show_path = "none", -- "none", "relative", "absolute"
|
|
},
|
|
},
|
|
["A"] = "add_directory", -- also accepts the optional config.show_path option like "add". this also supports BASH style brace expansion.
|
|
["d"] = "delete",
|
|
["r"] = "rename",
|
|
["b"] = "rename_basename",
|
|
["y"] = "copy_to_clipboard",
|
|
["x"] = "cut_to_clipboard",
|
|
["p"] = "paste_from_clipboard",
|
|
["c"] = "copy", -- takes text input for destination, also accepts the optional config.show_path option like "add":
|
|
-- ["c"] = {
|
|
-- "copy",
|
|
-- config = {
|
|
-- show_path = "none" -- "none", "relative", "absolute"
|
|
-- }
|
|
--}
|
|
["m"] = "move", -- takes text input for destination, also accepts the optional config.show_path option like "add".
|
|
["q"] = "close_window",
|
|
["R"] = "refresh",
|
|
["?"] = "show_help",
|
|
["<"] = "prev_source",
|
|
[">"] = "next_source",
|
|
["l"] = "show_file_details",
|
|
-- ["i"] = {
|
|
-- "show_file_details",
|
|
-- -- format strings of the timestamps shown for date created and last modified (see `:h os.date()`)
|
|
-- -- both options accept a string or a function that takes in the date in seconds and returns a string to display
|
|
-- -- config = {
|
|
-- -- created_format = "%Y-%m-%d %I:%M %p",
|
|
-- -- modified_format = "relative", -- equivalent to the line below
|
|
-- -- modified_format = function(seconds) return require('neo-tree.utils').relative_date(seconds) end
|
|
-- -- }
|
|
-- },
|
|
},
|
|
},
|
|
-- fill any relevant options here
|
|
filesystem = {
|
|
filtered_items = {
|
|
visible = false,
|
|
hide_dotfiles = true,
|
|
hide_gitignored = true,
|
|
hide_ignored = true,
|
|
ignore_files = {
|
|
".neotreeignore",
|
|
".ignore",
|
|
},
|
|
hide_hidden = true, -- Windows
|
|
hide_by_name = {
|
|
"node_modules",
|
|
},
|
|
always_show = {
|
|
".gitignore",
|
|
},
|
|
always_show_by_pattern = {
|
|
".env",
|
|
},
|
|
never_show = {
|
|
".DS_Store",
|
|
"thumbs.db",
|
|
},
|
|
},
|
|
group_empty_dirs = true,
|
|
follow_current_file = {
|
|
enabled = true,
|
|
leave_dirs_open = true,
|
|
},
|
|
},
|
|
|
|
git_status = {
|
|
window = {
|
|
position = "float",
|
|
mappings = {
|
|
["A"] = "git_add_all",
|
|
["gu"] = "git_unstage_file",
|
|
["gU"] = "git_undo_last_commit",
|
|
["ga"] = "git_add_file",
|
|
["gr"] = "git_revert_file",
|
|
["gc"] = "git_commit",
|
|
["gp"] = "git_push",
|
|
["gg"] = "git_commit_and_push",
|
|
["o"] = {
|
|
"show_help",
|
|
nowait = false,
|
|
config = { title = "Order by", prefix_key = "o" },
|
|
},
|
|
["oc"] = { "order_by_created", nowait = false },
|
|
["od"] = { "order_by_diagnostics", nowait = false },
|
|
["om"] = { "order_by_modified", nowait = false },
|
|
["on"] = { "order_by_name", nowait = false },
|
|
["os"] = { "order_by_size", nowait = false },
|
|
["ot"] = { "order_by_type", nowait = false },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
keys = {
|
|
{
|
|
"<leader>ft",
|
|
"<cmd>Neotree toggle<CR>",
|
|
desc = "Toggle File Explorer",
|
|
},
|
|
},
|
|
}
|