From b5cc85f2633e1ef1d4d42d943cd1d749cdb45e4b Mon Sep 17 00:00:00 2001 From: rootiest Date: Sat, 8 Feb 2025 21:15:58 -0500 Subject: [PATCH] disable excess/redundant plugins --- lua/plugins/coding.lua | 54 +++++++++++++++++------------------------- 1 file changed, 22 insertions(+), 32 deletions(-) diff --git a/lua/plugins/coding.lua b/lua/plugins/coding.lua index 6f34038..d28fd29 100644 --- a/lua/plugins/coding.lua +++ b/lua/plugins/coding.lua @@ -26,9 +26,9 @@ return { 'folke/lazydev.nvim', opts = require('data.types').lazydev.opts, }, - { -- G-code - 'wilriker/gcode.vim', - }, + -- { -- G-code + -- 'wilriker/gcode.vim', + -- }, { -- Alternate 'ton/vim-alternate', lazy = true, @@ -51,10 +51,10 @@ return { 'numToStr/Comment.nvim', opts = require('data.types').comment, }, - { -- Fast Action - 'Chaitanyabsprip/fastaction.nvim', - opts = {}, - }, + -- { -- Fast Action + -- 'Chaitanyabsprip/fastaction.nvim', + -- opts = {}, + -- }, { -- Matchup 'andymass/vim-matchup', setup = function() @@ -64,38 +64,28 @@ return { }, { -- EasyAlign 'junegunn/vim-easy-align', + lazy = true, keys = require('data.keys').easyalign, }, - { -- Vim-Shebang - 'vitalk/vim-shebang', - lazy = false, - }, { - 'oskarrrrrrr/symbols.nvim', - cmd = require('data.cmd').symbols, config = function() - local r = require('symbols.recipes') - require('symbols').setup(r.DefaultFilters, r.AsciiSymbols, { - sidebar = { - auto_peek = false, - show_guide_lines = true, - chars = { - folded = '', - unfolded = '', - guide_vert = '', - guide_middle_item = '', - guide_last_item = '', - }, - preview = { - show_always = true, }, }, }) end, }, - { -- Treesitter-endwise - 'RRethy/nvim-treesitter-endwise', - lazy = false, - priority = 1000, - }, + -- { -- Vim-Shebang + -- 'vitalk/vim-shebang', + -- lazy = true, + -- }, + -- { + -- 'oskarrrrrrr/symbols.nvim', + -- lazy = true, + -- cmd = require('data.cmd').symbols, + -- config = require('data.types').symbols.config, + -- }, + -- { -- Treesitter-endwise + -- 'RRethy/nvim-treesitter-endwise', + -- lazy = true, + -- }, }