integrate helix with fzf shortcuts

This commit is contained in:
Noah Masur
2025-03-19 14:16:01 -04:00
parent cf7966d73d
commit 12d0bccb42
5 changed files with 47 additions and 32 deletions

View File

@ -15,6 +15,15 @@ in
config = lib.mkIf cfg.enable {
# Use Neovim as the editor for git commit messages
programs.git.extraConfig.core.editor = lib.mkForce "${lib.getExe pkgs.helix}";
programs.jujutsu.settings.ui.editor = lib.mkForce "${lib.getExe pkgs.helix}";
# Set Neovim as the default app for text editing and manual pages
home.sessionVariables = {
EDITOR = lib.mkForce "${lib.getExe pkgs.helix}";
};
programs.helix = {
enable = true;