We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e8f14b commit aee634cCopy full SHA for aee634c
lua/custom/plugins/nvim-tree.lua
@@ -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
@@ -51,6 +51,8 @@ require('lazy').setup({
51
52
require 'custom/plugins/oil',
53
54
+ require 'custom/plugins/nvim-tree',
55
+
56
-- require 'custom/plugins/markview',
57
58
-- The following two comments only work if you have downloaded the kickstart repo, not just copy pasted the
0 commit comments