diff options
author | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-12-28 18:29:10 +0530 |
---|---|---|
committer | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-12-28 18:29:10 +0530 |
commit | 2479ddf6d7abb209ef7a34cc94e73184b56c2c56 (patch) | |
tree | 92ea5dafa457083f0728bcf449f9cae3823bda54 /lua/plugins/nvim-tree.lua | |
parent | 23edcf36f28ea1ccd35c179ac43e1b6f9f2e9ac2 (diff) |
nvim: plugins: moving to lazy.nvim style plugin declaration
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
Diffstat (limited to 'lua/plugins/nvim-tree.lua')
-rw-r--r-- | lua/plugins/nvim-tree.lua | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/lua/plugins/nvim-tree.lua b/lua/plugins/nvim-tree.lua deleted file mode 100644 index 4cdec34..0000000 --- a/lua/plugins/nvim-tree.lua +++ /dev/null @@ -1,19 +0,0 @@ --- disable netrw at the very start of your init.lua (strongly advised) -vim.g.loaded_netrw = 1 -vim.g.loaded_netrwPlugin = 1 - --- OR setup with some options -require("nvim-tree").setup({ - sort = { - sorter = "case_sensitive", - }, - view = { - width = 30, - }, - renderer = { - group_empty = true, - }, - filters = { - dotfiles = true, - }, -}) |