1
0
mirror of https://github.com/danbee/dotfiles-local synced 2025-03-04 08:49:07 +00:00

Add nerdcommenter and fugitive

This commit is contained in:
Daniel Barber 2023-04-25 14:29:34 -05:00 committed by Dan Barber
parent eb8d759915
commit 8ccc95f84e
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,2 @@
-- Add a space after comment characters
vim.g.NERDSpaceDelims = 1

View File

@ -6,6 +6,14 @@ return {
"hrsh7th/cmp-vsnip",
"hrsh7th/vim-vsnip",
"mhinz/vim-startify",
"tpope/vim-fugitive",
"preservim/nerdcommenter",
{
"lewis6991/gitsigns.nvim",
config = function()
require("gitsigns").setup()
end,
},
{
"hrsh7th/nvim-cmp",
config = require("config.plugins.nvim-cmp"),