-
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# fzf-lua | ||
|
||
Improved fzf.vim written in lua | ||
|
||
**Repository:** <https://github.com/ibhagwan/fzf-lua> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
return { | ||
{ "nvim-telescope/telescope.nvim", enabled = false }, | ||
{ "nvim-telescope/telescope-fzf-native.nvim", enabled = false }, | ||
{ "stevearc/dressing.nvim", optional = true, opts = { select = { backend = { "fzf_lua" } } } }, | ||
{ | ||
"ibhagwan/fzf-lua", | ||
cmd = "FzfLua", | ||
dependencies = { | ||
{ | ||
"AstroNvim/astrocore", | ||
opts = function(_, opts) | ||
local maps = opts.mappings | ||
maps.n["<Leader>f"] = vim.tbl_get(opts, "_map_sections", "f") | ||
if vim.fn.executable "git" == 1 then | ||
maps.n["<Leader>g"] = vim.tbl_get(opts, "_map_sections", "g") | ||
maps.n["<Leader>gb"] = { function() require("fzf-lua").git_branches() end, desc = "Git branches" } | ||
maps.n["<Leader>gc"] = | ||
{ function() require("fzf-lua").git_commits() end, desc = "Git commits (repository)" } | ||
maps.n["<Leader>gC"] = | ||
{ function() require("fzf-lua").git_bcommits() end, desc = "Git commits (current file)" } | ||
maps.n["<Leader>gt"] = { function() require("fzf-lua").git_status() end, desc = "Git status" } | ||
end | ||
maps.n["<Leader>f<CR>"] = { function() require("fzf-lua").resume() end, desc = "Resume previous search" } | ||
maps.n["<Leader>f'"] = { function() require("fzf-lua").marks() end, desc = "Find marks" } | ||
maps.n["<Leader>f/"] = | ||
{ function() require("fzf-lua").lgrep_curbuf() end, desc = "Find words in current buffer" } | ||
maps.n["<Leader>fa"] = { | ||
function() require("fzf-lua").files { cwd = vim.fn.stdpath "config" } end, | ||
desc = "Find AstroNvim config files", | ||
} | ||
maps.n["<Leader>fb"] = { function() require("fzf-lua").buffers() end, desc = "Find buffers" } | ||
maps.n["<Leader>fc"] = { function() require("fzf-lua").grep_cword() end, desc = "Find word under cursor" } | ||
maps.n["<Leader>fC"] = { function() require("fzf-lua").commands() end, desc = "Find commands" } | ||
maps.n["<Leader>ff"] = { function() require("fzf-lua").files() end, desc = "Find files" } | ||
maps.n["<Leader>fh"] = { function() require("fzf-lua").helptags() end, desc = "Find help" } | ||
maps.n["<Leader>fk"] = { function() require("fzf-lua").keymaps() end, desc = "Find keymaps" } | ||
maps.n["<Leader>fm"] = { function() require("fzf-lua").manpages() end, desc = "Find man" } | ||
maps.n["<Leader>fo"] = { function() require("fzf-lua").oldfiles() end, desc = "Find history" } | ||
maps.n["<Leader>fr"] = { function() require("fzf-lua").registers() end, desc = "Find registers" } | ||
maps.n["<Leader>ft"] = { function() require("fzf-lua").colorschemes() end, desc = "Find themes" } | ||
if vim.fn.executable "rg" == 1 or vim.fn.executable "grep" == 1 then | ||
maps.n["<Leader>fw"] = { function() require("fzf-lua").live_grep_native() end, desc = "Find words" } | ||
end | ||
maps.n["<Leader>ls"] = { function() require("fzf-lua").lsp_document_symbols() end, desc = "Search symbols" } | ||
end, | ||
}, | ||
}, | ||
opts = {}, | ||
}, | ||
{ | ||
"AstroNvim/astrolsp", | ||
optional = true, | ||
opts = function(_, opts) | ||
if require("astrocore").is_available "fzf-lua" then | ||
local maps = opts.mappings | ||
maps.n["<Leader>lD"] = { function() require("fzf-lua").diagnostics_document() end, desc = "Search diagnostics" } | ||
if maps.n.gd then maps.n.gd[1] = function() require("fzf-lua").lsp_definitions() end end | ||
if maps.n.gI then maps.n.gI[1] = function() require("fzf-lua").lsp_implementations() end end | ||
if maps.n["<Leader>lR"] then maps.n["<Leader>lR"][1] = function() require("fzf-lua").lsp_references() end end | ||
if maps.n.gy then maps.n.gy[1] = function() require("fzf-lua").lsp_typedefs() end end | ||
if maps.n["<Leader>lG"] then | ||
maps.n["<Leader>lG"][1] = function() require("fzf-lua").lsp_workspace_symbols() end | ||
end | ||
end | ||
end, | ||
}, | ||
} |