chore(nix/home): add aliases for nvim
This commit is contained in:
parent
0d2b01267a
commit
835821678a
1 changed files with 12 additions and 5 deletions
17
nix/home.nix
17
nix/home.nix
|
@ -151,11 +151,18 @@ in
|
||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases =
|
||||||
ls = "${pkgs.exa}/bin/exa -1";
|
let
|
||||||
ll = "${pkgs.exa}/bin/exa -l";
|
exa = "${pkgs.exa}/bin/exa";
|
||||||
lt = "${pkgs.exa}/bin/exa --tree";
|
in {
|
||||||
};
|
# exa
|
||||||
|
ls = "${exa} -1";
|
||||||
|
ll = "${exa} -l";
|
||||||
|
lt = "${exa} --tree";
|
||||||
|
# nvim
|
||||||
|
vi = "nvim";
|
||||||
|
vim = "nvim";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# enable git VCS
|
# enable git VCS
|
||||||
|
|
Loading…
Reference in a new issue