diff options
author | Brahmajit Das <brahmajit.xyz@gmail.com> | 2025-03-25 10:28:45 +0530 |
---|---|---|
committer | Brahmajit Das <brahmajit.xyz@gmail.com> | 2025-03-25 10:28:45 +0530 |
commit | 52e63f012a75762da1e36e8380093b2d8f0b1004 (patch) | |
tree | eabf5aa9bf71118028913fb9dc165f5d4b654656 | |
parent | 505024ad3d05acd4788eed113daabec5da27035e (diff) |
nvimtree: adding nvim tree plugin
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
-rw-r--r-- | lua/plugins/nvimtree.lua | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lua/plugins/nvimtree.lua b/lua/plugins/nvimtree.lua new file mode 100644 index 0000000..0c56850 --- /dev/null +++ b/lua/plugins/nvimtree.lua @@ -0,0 +1,21 @@ +return { + { + "nvim-tree/nvim-tree.lua", + config = function() + require("nvim-tree").setup({ + sort = { + sorter = "case_sensitive", + }, + view = { + width = 30, + }, + renderer = { + group_empty = true, + }, + filters = { + dotfiles = true, + }, + }) + end + } +} |