Skip to content

Commit aee634c

Browse files
committed
Add nvim-tree plugin, no config
1 parent 1e8f14b commit aee634c

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

lua/custom/plugins/nvim-tree.lua

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
return {
2+
'nvim-tree/nvim-tree.lua',
3+
version = '*',
4+
lazy = false,
5+
dependencies = {
6+
'nvim-tree/nvim-web-devicons',
7+
},
8+
config = function()
9+
require('nvim-tree').setup {}
10+
end,
11+
}

lua/lazy-plugins.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ require('lazy').setup({
5151

5252
require 'custom/plugins/oil',
5353

54+
require 'custom/plugins/nvim-tree',
55+
5456
-- require 'custom/plugins/markview',
5557

5658
-- The following two comments only work if you have downloaded the kickstart repo, not just copy pasted the

0 commit comments

Comments
 (0)