Add kitty and nvim configs

This commit is contained in:
jared kling
2023-07-14 21:39:53 -05:00
parent 3a27f545b1
commit 08f4fd9b14
9 changed files with 1012 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
return {
"nvim-neo-tree/neo-tree.nvim",
version = "*",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons",
"MunifTanjim/nui.nvim",
},
config = function ()
require('neo-tree').setup {}
end,
}