summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/plugins/nvimtree.lua21
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
+ }
+}