first commit

This commit is contained in:
Blake Ridgway 2024-12-24 23:01:45 -06:00
commit 15e643aa8e
41 changed files with 1623 additions and 0 deletions

25
lua/plugins/nvim-tree.lua Normal file
View file

@ -0,0 +1,25 @@
-- File Explorer / Tree
return {
-- https://github.com/nvim-tree/nvim-tree.lua
'nvim-tree/nvim-tree.lua',
dependencies = {
-- https://github.com/nvim-tree/nvim-web-devicons
'nvim-tree/nvim-web-devicons', -- Fancy icon support
},
opts = {
actions = {
open_file = {
window_picker = {
enable = false
},
}
},
},
config = function (_, opts)
-- Recommended settings to disable default netrw file explorer
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
require("nvim-tree").setup(opts)
end
}