Files
nvim/config/modules/plugins/fzf-lua.nix
Mykhailo Nikiforov d0011ce867
All checks were successful
check-commits / Check commits (pull_request) Successful in 9s
build-flake / build (pull_request) Successful in 2m54s
feat: nixvim configuration init
2025-10-23 19:50:10 +03:00

31 lines
679 B
Nix

{ lib, pkgs, ... }:
{
plugins.fzf-lua = {
enable = true;
# keymaps = {
# "<leader>sf" = {
# action = "files";
# options = {
# desc = "Fzf-Lua File Grep";
# };
# };
# "<leader>sg" = {
# action = "live_grep_native";
# options = {
# desc = "Fzf-Lua File Grep";
# };
# };
# "<leader>sv" = {
# action = "git_files";
# # settings = {
# # previewers.cat.cmd = lib.getExe' pkgs.coreutils "cat";
# # winopts.height = 0.5;
# # };
# options = {
# desc = "Fzf-Lua VCS Grep (Git)";
# };
# };
# };
};
}