mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
48 lines
776 B
Lua
48 lines
776 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" }
|
|
-- }
|
|
-- },
|
|
-- },
|
|
{
|
|
"ibhagwan/fzf-lua",
|
|
opts = {
|
|
file_ignore_patterns = {
|
|
"%.min%.js",
|
|
".git/",
|
|
"dist/",
|
|
"build/",
|
|
"target/",
|
|
"node_modules/",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"nvim-lspconfig",
|
|
opts = {
|
|
inlay_hints = { enabled = false },
|
|
}
|
|
}
|
|
}
|