diff options
author | Alex NeonXP <i@neonxp.ru> | 2024-02-18 15:18:56 +0300 |
---|---|---|
committer | Alex NeonXP <i@neonxp.ru> | 2024-02-18 15:18:56 +0300 |
commit | d3483449381b6a7ee4e62e352c699c63ddaab33a (patch) | |
tree | 6b181039580851d51629cb7e3bb139bde90e9720 /nvim/lua/plugins/tree.lua | |
parent | 17951e8c06f638543a19cbcaf95623ca211d6514 (diff) |
Конфиги nvim
Diffstat (limited to 'nvim/lua/plugins/tree.lua')
-rw-r--r-- | nvim/lua/plugins/tree.lua | 14 |
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, + }, +}) |