1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Set e alias to hx

This commit is contained in:
RGBCube 2023-05-12 23:21:40 +03:00
parent 22389a397e
commit f1f8f66140
2 changed files with 10 additions and 1 deletions

View file

@ -1,6 +1,16 @@
{ homeConfiguration, enabled, ... }: { homeConfiguration, enabled, ... }:
homeConfiguration "nixos" { homeConfiguration "nixos" {
programs.nushell = {
environmentVariables = {
EDITOR = "hx";
};
shellAliases = {
e = "hx";
};
};
programs.helix = enabled { programs.helix = enabled {
settings.theme = "gruvbox"; settings.theme = "gruvbox";

View file

@ -33,7 +33,6 @@
la = "ls -a"; la = "ls -a";
sl = "ls"; sl = "ls";
n = "nvim";
p = "python3"; p = "python3";
}; };
}; };