Install git-conflict and nvim-pqf

This commit is contained in:
Tyler Hallada 2023-12-01 15:26:01 -05:00
parent 96f2231bcc
commit 13d270e65a
3 changed files with 14 additions and 0 deletions

View File

@ -464,6 +464,18 @@ return require('packer').startup(function(use)
end, end,
} }
use 'NoahTheDuke/vim-just' use 'NoahTheDuke/vim-just'
use {
'yorickpeterse/nvim-pqf',
config = function()
require('plugins.nvim-pqf')
end,
}
use {
'akinsho/git-conflict.nvim',
config = function()
require('plugins.git-conflict-nvim')
end,
}
-- Automatically set up your configuration after cloning packer.nvim -- Automatically set up your configuration after cloning packer.nvim
-- Put this at the end after all plugins -- Put this at the end after all plugins

View File

@ -0,0 +1 @@
require('git-conflict').setup()

1
lua/plugins/nvim-pqf.lua Normal file
View File

@ -0,0 +1 @@
require('pqf').setup()