replace commentary with comment.nvim

This commit is contained in:
Noah Masur 2022-05-08 10:04:12 -04:00
parent 2bcf7ab079
commit e9de34405f

View File

@ -11,7 +11,6 @@ use({
-- Important tweaks
use("tpope/vim-surround") --- Manipulate parentheses
use("tpope/vim-commentary") --- Use gc or gcc to add comments
-- Convenience tweaks
use("tpope/vim-eunuch") --- File manipulation in Vim
@ -20,6 +19,14 @@ use("tpope/vim-fugitive") --- Git commands and syntax
use("tpope/vim-repeat") --- Actually repeat using .
use("christoomey/vim-tmux-navigator") --- Hotkeys for tmux panes
-- Use gc or gcc to add comments
use({
"numToStr/Comment.nvim",
config = function()
require("Comment").setup()
end,
})
-- Git next to line numbers
use({
"lewis6991/gitsigns.nvim",