This commit is contained in:
Yaser Alraddadi 2024-12-09 13:34:41 +03:00
parent 32ecf02994
commit ee9084ac91
2 changed files with 14 additions and 2 deletions

View File

@ -88,7 +88,7 @@ P.S. You can delete this when you're done too. It's your config now! :)
-- See `:help mapleader`
-- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used)
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
vim.g.maplocalleader = ','
-- Set to true if you have a Nerd Font installed and selected in the terminal
vim.g.have_nerd_font = false
@ -1139,7 +1139,7 @@ require('lazy').setup({
-- This is the easiest way to modularize your config.
--
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
-- { import = 'custom.plugins' },
{ import = 'custom.plugins' },
--
-- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`
-- Or use telescope!

View File

@ -0,0 +1,12 @@
return {
{
'MagicDuck/grug-far.nvim',
config = function()
require('grug-far').setup {
-- options, see Configuration section below
-- there are no required options atm
-- engine = 'ripgrep' is default, but 'astgrep' can be specified
}
end,
},
}