Add nvim-tree
This commit is contained in:
parent
c43196a300
commit
d3a56f6513
2 changed files with 7 additions and 0 deletions
2
init.lua
2
init.lua
|
|
@ -1,3 +1,5 @@
|
||||||
|
vim.g.loaded_netrw = 1
|
||||||
|
vim.g.loaded_netrwPlugin = 1
|
||||||
local should_profile = os.getenv("NVIM_PROFILE")
|
local should_profile = os.getenv("NVIM_PROFILE")
|
||||||
if should_profile then
|
if should_profile then
|
||||||
require("profile").instrument_autocmds()
|
require("profile").instrument_autocmds()
|
||||||
|
|
|
||||||
5
lua/plugins/tree.lua
Normal file
5
lua/plugins/tree.lua
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
return {
|
||||||
|
"nvim-tree/nvim-tree.lua",
|
||||||
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||||
|
config = true
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue