A few more changes

This commit is contained in:
Prajakt Shastry 2024-01-03 14:42:30 -05:00
parent b7035c2140
commit 1d40dc0924
6 changed files with 53 additions and 26 deletions

View file

@ -94,7 +94,17 @@ require('lazy').setup({
{ 'numToStr/Comment.nvim', opts = {} },
-- Fuzzy Finder (files, lsp, etc)
{ 'nvim-telescope/telescope.nvim', version = '*', dependencies = { 'nvim-lua/plenary.nvim' } },
{ 'nvim-telescope/telescope.nvim',
version = '*',
dependencies = {
'nvim-lua/plenary.nvim',
"nvim-telescope/telescope-live-grep-args.nvim",
},
config = function ()
require("telescope").load_extension("live_grep_args")
end
},
-- Fuzzy Finder Algorithm which requires local dependencies to be built.
-- Only load if `make` is available. Make sure you have the system
@ -179,4 +189,5 @@ require('lazy').setup({
},
}
},
{ "vim-test/vim-test" }
}, {})