nvim: init.lua: switched to shortened syntax for plugins on github

This commit is contained in:
kalmenn 2023-12-17 02:02:01 +01:00
parent fcf876f8b0
commit 6a8e3c1810
Signed by: kalmenn
GPG key ID: DFF253360BF8471F

View file

@ -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
}) })
--[[ --[[