From 53c38be20ab980125312cf81e427ed40dd52ea57 Mon Sep 17 00:00:00 2001 From: Uttarayan Mondal Date: Mon, 10 Apr 2023 19:26:12 +0530 Subject: [PATCH] [feat] Remove barbecue.nvim --- config/nvim/lazy-lock.json | 2 -- config/nvim/lua/plugins.lua | 31 ++++++++++++++++--------------- 2 files changed, 16 insertions(+), 17 deletions(-) diff --git a/config/nvim/lazy-lock.json b/config/nvim/lazy-lock.json index ee3dd432..a9a7f06c 100644 --- a/config/nvim/lazy-lock.json +++ b/config/nvim/lazy-lock.json @@ -1,5 +1,4 @@ { - "barbecue.nvim": { "branch": "main", "commit": "0ed58f0c8bc8483f1e6b5e94505d11024e03dabc" }, "comfortable-motion.vim": { "branch": "master", "commit": "e20aeafb07c6184727b29f7674530150f7ab2036" }, "copilot.vim": { "branch": "release", "commit": "b6e5624351ba735e25eb8864d7d22819aad00606" }, "coq.artifacts": { "branch": "artifacts", "commit": "be72c7ad5d8dfe942fd5aec89505805c2e474b93" }, @@ -24,7 +23,6 @@ "nvim-dap": { "branch": "master", "commit": "debd7c2f80eaf20c5f5df25db8d8c1b9b18f4421" }, "nvim-dap-ui": { "branch": "master", "commit": "286f682f366fbc652b38dff893569374e9433dd3" }, "nvim-lspconfig": { "branch": "master", "commit": "10fa01d553ce10646350461ac5ddc71f189e9d1a" }, - "nvim-navic": { "branch": "master", "commit": "27124a773d362628b114cd12016e743dab4ccf3e" }, "nvim-treesitter": { "branch": "master", "commit": "cc360a9beb1b30d172438f640e2c3450358c4086" }, "nvim-treesitter-context": { "branch": "master", "commit": "38203f5e6c62617b3c07662dc71ce3047ecd90d3" }, "nvim-web-devicons": { "branch": "master", "commit": "f16ec8f6e5d23e4349501dae46e0a661918e086e" }, diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index ec40fe7c..e574270f 100644 --- a/config/nvim/lua/plugins.lua +++ b/config/nvim/lua/plugins.lua @@ -19,13 +19,13 @@ vim.opt.rtp:prepend(lazypath) -- local use = require('packer').use return require('lazy').setup({ - { "ellisonleao/glow.nvim", config = true, cmd = "Glow" }, + { "ellisonleao/glow.nvim", config = true, cmd = "Glow" }, 'samoshkin/vim-mergetool', 'mhartington/formatter.nvim', -- 'christianrondeau/vim-base64', - 'tpope/vim-commentary', - 'tpope/vim-fugitive', + { 'tpope/vim-commentary', lazy = false }, + { 'tpope/vim-fugitive', cmd = { "Git", "Gdiffsplit", "Gvdiffsplit", "Gedit", "Gread", "Gwrite", "Ggrep", "Gbrowse", "GMove", "GDelete" } }, 'tpope/vim-repeat', 'tpope/vim-speeddating', 'tpope/vim-surround', @@ -37,9 +37,9 @@ return require('lazy').setup({ -- 'b0o/SchemaStore.nvim', -- 'rcarriga/nvim-notify', 'folke/todo-comments.nvim', - { 'github/copilot.vim', event = "LspAttach" }, + { 'github/copilot.vim', event = "LspAttach" }, -- 'ggandor/leap.nvim', - { 'shortcuts/no-neck-pain.nvim', version = "*" }, + { 'shortcuts/no-neck-pain.nvim', version = "*" }, -- { 'folke/zen-mode.nvim', config = function() require('zen-mode').setup() end }, -- { 'folke/twilight.nvim', config = function() require('twilight').setup() end }, { @@ -62,16 +62,17 @@ return require('lazy').setup({ cmd = "Telescope", dependencies = { 'nvim-lua/plenary.nvim', 'nvim-telescope/telescope-ui-select.nvim', 'nvim-telescope/telescope-fzf-native.nvim' } }, - { - 'utilyre/barbecue.nvim', - version = "*", - config = function() require('barbecue').setup() end, - dependencies = { - 'neovim/nvim-lspconfig', - 'SmiteshP/nvim-navic', - 'nvim-tree/nvim-web-devicons' - }, - }, + -- { + -- 'utilyre/barbecue.nvim', + -- event = "LspAttach", + -- version = "*", + -- config = function() require('barbecue').setup() end, + -- dependencies = { + -- 'neovim/nvim-lspconfig', + -- 'SmiteshP/nvim-navic', + -- 'nvim-tree/nvim-web-devicons' + -- }, + -- }, { 'akinsho/git-conflict.nvim', version = "*",