diff options
author | Justine Smithies <justine@smithies.me.uk> | 2024-07-05 20:23:46 +0100 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2024-07-05 20:23:46 +0100 |
commit | 56813418df67f62ec6c446245110610b514bd301 (patch) | |
tree | ee7a5450e8cc75e1aad32696c70047cc856c5caf | |
parent | fe7979e2f84773e5d29701887377539563126fe3 (diff) |
Removed comments plugin as now builtin
-rw-r--r-- | .config/nvim/lua/plugins.lua | 7 | ||||
-rw-r--r-- | .config/nvim/lua/pluginsconfig/init.lua | 1 |
2 files changed, 1 insertions, 7 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 1fbc6ec..14e45a2 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -98,17 +98,12 @@ return require('packer').startup({function(use) }, } - -- Comment - use { - 'numToStr/Comment.nvim', - } - -- lsp_lines use { "https://git.sr.ht/~whynothugo/lsp_lines.nvim", } - -- Comment + -- Bufdelete use { 'famiu/bufdelete.nvim', } diff --git a/.config/nvim/lua/pluginsconfig/init.lua b/.config/nvim/lua/pluginsconfig/init.lua index 3b2dcea..af0b779 100644 --- a/.config/nvim/lua/pluginsconfig/init.lua +++ b/.config/nvim/lua/pluginsconfig/init.lua @@ -10,7 +10,6 @@ local plugins = { 'telescope', 'indent-blankline', 'undotree', - 'Comment', 'nvim-lspconfig', 'lsp_lines', 'alpha', |