update shell config
This commit is contained in:
parent
ebd22ef0a3
commit
c1999695e0
|
@ -14,13 +14,17 @@ in {
|
||||||
if not test -f "$HOME/.ssh/id_rsa"
|
if not test -f "$HOME/.ssh/id_rsa"
|
||||||
echo "SSH keys not yet setup"
|
echo "SSH keys not yet setup"
|
||||||
end
|
end
|
||||||
if not rustc --version &> /dev/null
|
if not command -qs rustc; or not rustc --version &> /dev/null
|
||||||
rustup default stable &>/dev/null &
|
rustup default stable &>/dev/null &
|
||||||
end
|
end
|
||||||
|
set_color normal
|
||||||
|
|
||||||
bind \cy 'commandline | wl-copy -n'
|
bind \cy 'commandline | wl-copy -n'
|
||||||
'';
|
'';
|
||||||
shellAliases = { rm = "trash"; };
|
shellAliases = {
|
||||||
|
rm = "trash";
|
||||||
|
tree = "exa -T";
|
||||||
|
};
|
||||||
shellAbbrs = {
|
shellAbbrs = {
|
||||||
v = "kak";
|
v = "kak";
|
||||||
ns = "nix develop --command $SHELL";
|
ns = "nix develop --command $SHELL";
|
||||||
|
|
Loading…
Reference in a new issue