nvim: init.lua: switched to shortened syntax for plugins on github
This commit is contained in:
parent
fcf876f8b0
commit
6a8e3c1810
|
@ -15,10 +15,10 @@ end
|
||||||
vim.opt.rtp:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
require('lazy').setup({
|
require('lazy').setup({
|
||||||
{ name = "catppuccin", url = "https://github.com/catppuccin/nvim.git" },
|
"catppuccin/nvim",
|
||||||
{ name = 'treesitter', url = "https://github.com/nvim-treesitter/nvim-treesitter.git" },
|
"nvim-treesitter/nvim-treesitter",
|
||||||
{ name = 'lsp-config', url = 'https://github.com/neovim/nvim-lspconfig.git' },
|
"neovim/nvim-lspconfig",
|
||||||
{ name = 'nvim-tree', url = 'https://github.com/nvim-tree/nvim-tree.lua.git' }, -- TODO: replace with neo-tree
|
"nvim-tree/nvim-tree", -- TODO: replace with neo-tree
|
||||||
})
|
})
|
||||||
|
|
||||||
--[[
|
--[[
|
||||||
|
|
Loading…
Reference in a new issue