From aa084e936537a575f40d78360b53c2cbbdc774c1 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 16 Jun 2025 14:16:22 -0600 Subject: [PATCH] update helix --- home.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/home.nix b/home.nix index 8f42f1f..d1882d2 100644 --- a/home.nix +++ b/home.nix @@ -33,8 +33,8 @@ userName = "Aaron Honeycutt"; userEmail = "aaronhoneycutt@protonmail.com"; aliases = { - undo = "reset HEAD~1 --mixed"; - amend = "commit -a --amend"; + force = "push -f"; + undo = "rebase -i HEAD~2"; }; extraConfig = { color = { @@ -56,8 +56,13 @@ programs.helix = { enable = true; + defaultEditor = true; settings = { - theme = "ferra"; + theme = "ferra"; + editor = { + true-color = true; + auto-completion = false; + }; }; };