run format
This commit is contained in:
parent
541cf92fdc
commit
ea98a00c5e
10
init.lua
10
init.lua
|
@ -238,7 +238,9 @@ require('lazy').setup({
|
|||
},
|
||||
|
||||
-- "gc" to comment visual regions/lines
|
||||
{ 'numToStr/Comment.nvim', opts = {
|
||||
{
|
||||
'numToStr/Comment.nvim',
|
||||
opts = {
|
||||
toggler = {
|
||||
---Line-comment toggle keymap
|
||||
line = '<C-_>',
|
||||
|
@ -252,7 +254,8 @@ require('lazy').setup({
|
|||
---Block-comment keymap
|
||||
block = 'gb',
|
||||
}
|
||||
} },
|
||||
}
|
||||
},
|
||||
|
||||
-- Fuzzy Finder (files, lsp, etc)
|
||||
{
|
||||
|
@ -445,6 +448,9 @@ local function live_grep_git_root()
|
|||
require('telescope.builtin').live_grep {
|
||||
search_dirs = { git_root },
|
||||
}
|
||||
require('telescope.builtin').live_grep({
|
||||
search_dirs = { git_root },
|
||||
})
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue