mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-26 23:14:57 +08:00
Default editor is now helix
This commit is contained in:
parent
721c3c6482
commit
74162ecdb5
4 changed files with 2 additions and 5 deletions
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
{
|
||||
programs.helix = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
extraPackages = with pkgs; [
|
||||
marksman
|
||||
];
|
||||
|
|
|
|||
|
|
@ -5,8 +5,5 @@
|
|||
envFile.source = ./env.nu;
|
||||
configFile.source = ./config.nu;
|
||||
shellAliases = config.home.shellAliases;
|
||||
environmentVariables = {
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ in
|
|||
fonts.fontconfig.enable = true;
|
||||
|
||||
home.shellAliases = {
|
||||
e = "nvim";
|
||||
e = "hx";
|
||||
g = "git";
|
||||
lg = "lazygit";
|
||||
l = "ls";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue