Default editor is now helix

This commit is contained in:
Sridhar Ratnakumar 2025-09-09 17:01:25 +02:00
parent 721c3c6482
commit 74162ecdb5
4 changed files with 2 additions and 5 deletions

View file

@ -31,7 +31,6 @@
lfs.enable = true;
extraConfig = {
init.defaultBranch = "master"; # Undo breakage due to https://srid.ca/luxury-belief
core.editor = "nvim";
#protocol.keybase.allow = "always";
credential.helper = "store --file ~/.git-credentials";
pull.rebase = "false";

View file

@ -2,6 +2,7 @@
{
programs.helix = {
enable = true;
defaultEditor = true;
extraPackages = with pkgs; [
marksman
];

View file

@ -5,8 +5,5 @@
envFile.source = ./env.nu;
configFile.source = ./config.nu;
shellAliases = config.home.shellAliases;
environmentVariables = {
EDITOR = "nvim";
};
};
}

View file

@ -63,7 +63,7 @@ in
fonts.fontconfig.enable = true;
home.shellAliases = {
e = "nvim";
e = "hx";
g = "git";
lg = "lazygit";
l = "ls";