1
0
Fork 0

nvim: Migrate configuration to lua and built-in plugin manager

This commit is contained in:
Olli 2026-04-19 12:53:37 +02:00
commit 6440203958
26 changed files with 453 additions and 616 deletions

View file

@ -0,0 +1,16 @@
vim.pack.add({
{
src = gh("nvim-neo-tree/neo-tree.nvim"),
version = vim.version.range("3")
},
gh("nvim-lua/plenary.nvim"),
gh("MunifTanjim/nui.nvim"),
gh("nvim-tree/nvim-web-devicons"),
})
require("neo-tree").setup({
window = {
position = "left",
width = 50,
},
})