Initial Commit

This commit is contained in:
Marc Talcott 2024-05-28 14:26:17 -04:00
parent 5aeddfdd5d
commit 437a8fc86b
14 changed files with 875 additions and 782 deletions

26
lua/plugins/neo-tree.lua Normal file
View file

@ -0,0 +1,26 @@
-- Neo-tree is a Neovim plugin to browse the file system
-- https://github.com/nvim-neo-tree/neo-tree.nvim
return {
'nvim-neo-tree/neo-tree.nvim',
version = '*',
dependencies = {
'nvim-lua/plenary.nvim',
'nvim-tree/nvim-web-devicons', -- not strictly required, but recommended
'MunifTanjim/nui.nvim',
},
cmd = 'Neotree',
keys = {
{ '\\', ':Neotree reveal<CR>', { desc = 'NeoTree reveal' } },
},
opts = {
filesystem = {
window = {
mappings = {
['\\'] = 'close_window',
['w'] = false,
},
},
},
},
}