mirror of
https://github.com/Keyitdev/dotfiles.git
synced 2026-09-24 01:52:09 +00:00
71 lines
1.6 KiB
Lua
71 lines
1.6 KiB
Lua
local status_ok, neotree = pcall(require, "neo-tree")
|
|
if status_ok then
|
|
neotree.setup(astronvim.user_plugin_opts("plugins.neo-tree", {
|
|
close_if_last_window = true,
|
|
popup_border_style = "rounded",
|
|
enable_diagnostics = false,
|
|
default_component_configs = {
|
|
indent = {
|
|
padding = 0,
|
|
with_expanders = false,
|
|
},
|
|
icon = {
|
|
folder_closed = "",
|
|
folder_open = "",
|
|
folder_empty = "",
|
|
default = "",
|
|
},
|
|
git_status = {
|
|
symbols = {
|
|
added = "",
|
|
deleted = "",
|
|
modified = "",
|
|
renamed = "➜",
|
|
untracked = "★",
|
|
ignored = "◌",
|
|
unstaged = "✗",
|
|
staged = "✓",
|
|
conflict = "",
|
|
},
|
|
},
|
|
},
|
|
window = {
|
|
width = 25,
|
|
mappings = {
|
|
["o"] = "open",
|
|
},
|
|
},
|
|
filesystem = {
|
|
filtered_items = {
|
|
visible = false,
|
|
hide_dotfiles = true,
|
|
hide_gitignored = false,
|
|
hide_by_name = {
|
|
".DS_Store",
|
|
"thumbs.db",
|
|
"node_modules",
|
|
"__pycache__",
|
|
},
|
|
},
|
|
follow_current_file = true,
|
|
hijack_netrw_behavior = "open_current",
|
|
use_libuv_file_watcher = true,
|
|
},
|
|
git_status = {
|
|
window = {
|
|
position = "float",
|
|
},
|
|
},
|
|
event_handlers = {
|
|
{
|
|
event = "vim_buffer_enter",
|
|
handler = function(_)
|
|
if vim.bo.filetype == "neo-tree" then
|
|
vim.wo.signcolumn = "auto"
|
|
end
|
|
end,
|
|
},
|
|
},
|
|
}))
|
|
end
|