From 6a8e3c181092d718e51aac42805e8c3dede9d04c Mon Sep 17 00:00:00 2001 From: kalmenn Date: Sun, 17 Dec 2023 02:02:01 +0100 Subject: [PATCH] nvim: init.lua: switched to shortened syntax for plugins on github --- .config/nvim/init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 08883b1..33f6edf 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -15,10 +15,10 @@ end vim.opt.rtp:prepend(lazypath) require('lazy').setup({ - { name = "catppuccin", url = "https://github.com/catppuccin/nvim.git" }, - { name = 'treesitter', url = "https://github.com/nvim-treesitter/nvim-treesitter.git" }, - { name = 'lsp-config', url = 'https://github.com/neovim/nvim-lspconfig.git' }, - { name = 'nvim-tree', url = 'https://github.com/nvim-tree/nvim-tree.lua.git' }, -- TODO: replace with neo-tree + "catppuccin/nvim", + "nvim-treesitter/nvim-treesitter", + "neovim/nvim-lspconfig", + "nvim-tree/nvim-tree", -- TODO: replace with neo-tree }) --[[