mirror of
https://github.com/tuxdotrs/tnvim.git
synced 2025-07-07 05:46:34 +05:30
initial commit
This commit is contained in:
35
modules/home-manager/nvim/old/lua/plugins/neotree.lua
Normal file
35
modules/home-manager/nvim/old/lua/plugins/neotree.lua
Normal file
@ -0,0 +1,35 @@
|
||||
return {
|
||||
'nvim-neo-tree/neo-tree.nvim',
|
||||
lazy = false,
|
||||
cmd = 'Neotree',
|
||||
branch = 'v3.x',
|
||||
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
'nvim-tree/nvim-web-devicons',
|
||||
'MunifTanjim/nui.nvim',
|
||||
},
|
||||
config = {
|
||||
filesystem = {
|
||||
follow_current_file = { enabled = true },
|
||||
hijack_netrw_behavior = 'open_default',
|
||||
filtered_items = { visible = true },
|
||||
use_libuv_file_watcher = true,
|
||||
},
|
||||
git_status = {
|
||||
symbols = {
|
||||
-- Change type
|
||||
added = '✚', -- or "✚", but this is redundant info if you use git_status_colors on the name
|
||||
modified = '', -- or "", but this is redundant info if you use git_status_colors on the name
|
||||
deleted = '✖', -- this can only be used in the git_status source
|
||||
renamed = '', -- this can only be used in the git_status source
|
||||
-- Status type
|
||||
untracked = '',
|
||||
ignored = '',
|
||||
unstaged = '',
|
||||
staged = '',
|
||||
conflict = '',
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user