added NeoTree and relative linenumbers

This commit is contained in:
Alexander Kidd 2024-02-14 10:57:02 -05:00
parent 7af594fd31
commit 289b9067f6
3 changed files with 57 additions and 7 deletions

View file

@ -2,4 +2,17 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}
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", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
},
config = function()
require('neo-tree').setup {}
end,
}