starter/lua/plugins/editor.lua
Ralph Azucena 4536f7eba7 fzf + rust
2025-02-17 20:28:10 -08:00

42 lines
686 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/",
},
},
},
}