nvim: Migrate configuration to lua and built-in plugin manager
This commit is contained in:
parent
9d31a63799
commit
6440203958
26 changed files with 453 additions and 616 deletions
16
nvim/lua/plugins/neotree.lua
Normal file
16
nvim/lua/plugins/neotree.lua
Normal 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,
|
||||
},
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue