huge reordering of config

add codeium plugin
change keymaps for completion picker to up/down/tab
remove comments
compact config
This commit is contained in:
David Hendén 2024-11-22 09:58:47 -04:00
parent 86fb9d5828
commit 0cf6219bdf
13 changed files with 116 additions and 150 deletions

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

@ -0,0 +1,25 @@
-- 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', silent = true },
},
opts = {
filesystem = {
window = {
mappings = {
['\\'] = 'close_window',
},
},
},
},
}