From fec7025b41ee45f58b8bf106722e6ade261489d9 Mon Sep 17 00:00:00 2001 From: Adam Jeniski Date: Mon, 12 Jun 2023 13:53:01 -0400 Subject: [PATCH] archive unused plugins --- .config/nvim/lua/ajet/packer.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.config/nvim/lua/ajet/packer.lua b/.config/nvim/lua/ajet/packer.lua index 6768f8d..0018c29 100755 --- a/.config/nvim/lua/ajet/packer.lua +++ b/.config/nvim/lua/ajet/packer.lua @@ -44,14 +44,6 @@ return require('packer').startup(function(use) end }) use('tribela/vim-transparent') - use('evanleck/vim-svelte', - { branch = 'main' }, - { - requires = { - { 'othree/html5.vim' }, - { 'pangloss/vim-javascript' } - } - }) use({ 'simrat39/rust-tools.nvim', requires = { @@ -107,4 +99,12 @@ return require('packer').startup(function(use) -- use('mattn/emmet-vim') -- use('dcampos/cmp-emmet-vim') -- use('Konfekt/vim-alias') + -- use('evanleck/vim-svelte', + -- { branch = 'main' }, + -- { + -- requires = { + -- { 'othree/html5.vim' }, + -- { 'pangloss/vim-javascript' } + -- } + -- }) end)