···11#!/bin/sh
2233-multirust run nightly cargo "$@"
33+exec multirust run nightly cargo "$@"
+5
fish/functions/e.fish
···11function e --wraps "$EDITOR"
22+ if [ (count $argv) = 0 ]
33+ set -l f (tempfile)
44+ fzf > $f; or exit
55+ set argv $argv (cat $f)
66+ end
27 eval "$EDITOR $argv"
38end
+12-19
fish/init.fish
···3344set -x PATH $HOME/.local/bin $GOPATH/bin $HOME/.cabal/bin $PATH
5566-if test -n "$HOME"
77- set NIX_LINK "$HOME/.nix-profile"
66+set NIX_LINK "$HOME/.nix-profile"
8799- # Set the default profile.
1010- if not [ -L "$NIX_LINK" ]
1111- echo "creating $NIX_LINK" >&2
1212- set _NIX_DEF_LINK /nix/var/nix/profiles/default
1313- /nix/store/4lrli8ng5i54k14id152svvp1kvqsn92-coreutils-8.21/bin/ln -s "$_NIX_DEF_LINK" "$NIX_LINK"
1414- end
88+# Set the default profile.
99+if not [ -L "$NIX_LINK" ]
1010+ echo "creating $NIX_LINK" >&2
1111+ set _NIX_DEF_LINK /nix/var/nix/profiles/default
1212+ /nix/store/4lrli8ng5i54k14id152svvp1kvqsn92-coreutils-8.21/bin/ln -s "$_NIX_DEF_LINK" "$NIX_LINK"
1313+end
15141616- set -x PATH $NIX_LINK/bin $NIX_LINK/sbin $PATH
1515+set -x PATH $NIX_LINK/bin $NIX_LINK/sbin $PATH
17161818- # Subscribe the root user to the Nixpkgs channel by default.
1919- if [ ! -e $HOME/.nix-channels ]
2020- echo "http://nixos.org/channels/nixpkgs-unstable nixpkgs" > $HOME/.nix-channels
2121- end
2222-2323- # Append ~/.nix-defexpr/channels/nixpkgs to $NIX_PATH so that
2424- # <nixpkgs> paths work when the user has fetched the Nixpkgs
2525- # channel.
2626- set -x NIX_PATH nixpkgs=$HOME/.nix-defexpr/channels/nixpkgs
2727-end
1717+# Append ~/.nix-defexpr/channels/nixpkgs to $NIX_PATH so that
1818+# <nixpkgs> paths work when the user has fetched the Nixpkgs
1919+# channel.
2020+set -x NIX_PATH nixpkgs=$HOME/.nix-defexpr/channels/nixpkgs
28212922available hub; and eval (hub alias -s)
3023