mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
29 lines
452 B
Lua
29 lines
452 B
Lua
return {
|
|
{
|
|
"folke/flash.nvim",
|
|
opts = {
|
|
modes = {
|
|
search = {
|
|
enabled = false,
|
|
-- jump = {
|
|
-- nohlsearch = false,
|
|
-- },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"lewis6991/gitsigns.nvim",
|
|
opts = {
|
|
current_line_blame = true,
|
|
},
|
|
},
|
|
{
|
|
"nvim-telescope/telescope.nvim",
|
|
opts = {
|
|
defaults = {
|
|
file_ignore_patterns = { "%.min%.js" }
|
|
}
|
|
},
|
|
},
|
|
}
|