diff options
author | Adam <56338480+adastx@users.noreply.github.com> | 2022-02-12 13:37:08 +0100 |
---|---|---|
committer | Adam <56338480+adastx@users.noreply.github.com> | 2022-02-13 17:35:52 +0100 |
commit | f49b94f47fd2ce37220b17a99e16b2582edc632f (patch) | |
tree | 88c17c4b2cce7f2533acd4afa5e1220ab3cad995 | |
parent | 7dba6cc0245aa02ec718308a9828ccff26a3aba4 (diff) |
(n)vim: removed unused plugins
-rw-r--r-- | .config/nvim/lua/plugins.lua | 4 | ||||
-rw-r--r-- | .vim/vimrc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 485dfb5..4ca29bb 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -2,9 +2,9 @@ local use = require('packer').use require('packer').startup(function() use 'wbthomason/packer.nvim' use 'romgrk/doom-one.vim' - use 'tpope/vim-fugitive' + -- use 'tpope/vim-fugitive' use 'tpope/vim-surround' - use 'tpope/vim-repeat' + -- use 'tpope/vim-repeat' use 'b3nj5m1n/kommentary' use 'williamboman/nvim-lsp-installer' @@ -1,8 +1,8 @@ call plug#begin('~/.vim/plugged') Plug 'romgrk/doom-one.vim' - Plug 'tpope/vim-fugitive' + " Plug 'tpope/vim-fugitive' Plug 'tpope/vim-surround' - Plug 'tpope/vim-repeat' + " Plug 'tpope/vim-repeat' Plug 'tpope/vim-commentary' call plug#end() |