diff options
author | talha <talha@talhaamir.xyz> | 2024-03-01 22:18:47 +0500 |
---|---|---|
committer | talha <talha@talhaamir.xyz> | 2024-03-01 22:18:47 +0500 |
commit | 00216181d2dea4ca8e44898aba459596b70220aa (patch) | |
tree | 1b27b8484984f3d1e227748505dbaafed3ec1c48 /lua/talha/packer.lua | |
parent | 62a5f27b6d43a769c6699cbbadc2e78ab2f004db (diff) |
Removed annoying and unused plugins:windows
- Vim-Gutentags is gone. Rarely worked.
- Lsp-Zero is gone. Was not used.
Diffstat (limited to 'lua/talha/packer.lua')
-rw-r--r-- | lua/talha/packer.lua | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lua/talha/packer.lua b/lua/talha/packer.lua index c1980c5..411958e 100644 --- a/lua/talha/packer.lua +++ b/lua/talha/packer.lua @@ -15,7 +15,6 @@ return require('packer').startup(function(use) -- colorschemes use {'Mofiqul/vscode.nvim'} - use {'aditya-azad/candle-grey'} use { "theprimeagen/harpoon" } @@ -23,24 +22,4 @@ return require('packer').startup(function(use) use('tpope/vim-fugitive') - use({ - 'ludovicchabant/vim-gutentags', - ft={'h', 'hpp', 'c', 'cpp'} - }) - - use { - 'VonHeikemen/lsp-zero.nvim', - branch = 'v2.x', - requires = { - -- LSP Support - {'neovim/nvim-lspconfig'}, -- Required - {'williamboman/mason.nvim'}, -- Optional - {'williamboman/mason-lspconfig.nvim'}, -- Optional - - -- Autocompletion - {'hrsh7th/nvim-cmp'}, -- Required - {'hrsh7th/cmp-nvim-lsp'}, -- Required - {'L3MON4D3/LuaSnip'}, -- Required - } - } end) |