run format

This commit is contained in:
frumsy 2023-11-14 16:44:36 -05:00
parent 541cf92fdc
commit ea98a00c5e
1 changed files with 20 additions and 14 deletions

View File

@ -238,7 +238,9 @@ require('lazy').setup({
}, },
-- "gc" to comment visual regions/lines -- "gc" to comment visual regions/lines
{ 'numToStr/Comment.nvim', opts = { {
'numToStr/Comment.nvim',
opts = {
toggler = { toggler = {
---Line-comment toggle keymap ---Line-comment toggle keymap
line = '<C-_>', line = '<C-_>',
@ -252,7 +254,8 @@ require('lazy').setup({
---Block-comment keymap ---Block-comment keymap
block = 'gb', block = 'gb',
} }
} }, }
},
-- Fuzzy Finder (files, lsp, etc) -- Fuzzy Finder (files, lsp, etc)
{ {
@ -445,6 +448,9 @@ local function live_grep_git_root()
require('telescope.builtin').live_grep { require('telescope.builtin').live_grep {
search_dirs = { git_root }, search_dirs = { git_root },
} }
require('telescope.builtin').live_grep({
search_dirs = { git_root },
})
end end
end end