summaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/tree.lua
diff options
context:
space:
mode:
author2024-02-18 15:18:56 +0300
committer2024-02-18 15:18:56 +0300
commitd3483449381b6a7ee4e62e352c699c63ddaab33a (patch)
tree6b181039580851d51629cb7e3bb139bde90e9720 /nvim/lua/plugins/tree.lua
parentОбновление zsh (diff)
downloaddotfiles-d3483449381b6a7ee4e62e352c699c63ddaab33a.tar.gz
dotfiles-d3483449381b6a7ee4e62e352c699c63ddaab33a.tar.bz2
dotfiles-d3483449381b6a7ee4e62e352c699c63ddaab33a.tar.xz
dotfiles-d3483449381b6a7ee4e62e352c699c63ddaab33a.zip
Конфиги nvim
Diffstat (limited to 'nvim/lua/plugins/tree.lua')
-rw-r--r--nvim/lua/plugins/tree.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/nvim/lua/plugins/tree.lua b/nvim/lua/plugins/tree.lua
new file mode 100644
index 0000000..86cc36c
--- /dev/null
+++ b/nvim/lua/plugins/tree.lua
@@ -0,0 +1,14 @@
+require("nvim-tree").setup({
+ sort = {
+ sorter = "case_sensitive",
+ },
+ view = {
+ width = 30,
+ },
+ renderer = {
+ group_empty = true,
+ },
+ filters = {
+ dotfiles = true,
+ },
+})