feat: nixvim configuration init
All checks were successful
check-commits / Check commits (pull_request) Successful in 9s
build-flake / build (pull_request) Successful in 2m54s

This commit is contained in:
2025-10-23 19:50:10 +03:00
parent 0e0e75eeb6
commit d0011ce867
62 changed files with 1150 additions and 613 deletions

View File

@@ -0,0 +1,30 @@
{ 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)";
# };
# };
# };
};
}