mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-22 23:55:37 +00:00
replace commentary with comment.nvim
This commit is contained in:
parent
2bcf7ab079
commit
e9de34405f
@ -11,7 +11,6 @@ use({
|
|||||||
|
|
||||||
-- Important tweaks
|
-- Important tweaks
|
||||||
use("tpope/vim-surround") --- Manipulate parentheses
|
use("tpope/vim-surround") --- Manipulate parentheses
|
||||||
use("tpope/vim-commentary") --- Use gc or gcc to add comments
|
|
||||||
|
|
||||||
-- Convenience tweaks
|
-- Convenience tweaks
|
||||||
use("tpope/vim-eunuch") --- File manipulation in Vim
|
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("tpope/vim-repeat") --- Actually repeat using .
|
||||||
use("christoomey/vim-tmux-navigator") --- Hotkeys for tmux panes
|
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
|
-- Git next to line numbers
|
||||||
use({
|
use({
|
||||||
"lewis6991/gitsigns.nvim",
|
"lewis6991/gitsigns.nvim",
|
||||||
|
Loading…
Reference in New Issue
Block a user