~/.config/fish/config.fish
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias l='ls -CF' | |
alias ls='ls --color=auto' | |
alias tm='tmux new -A -s _' | |
alias blaze='bazel' | |
alias conda="~/anaconda3/condabin/conda" | |
alias gdl='cd ~/git' | |
if status --is-interactive | |
set BASE16_SHELL "$HOME/.config/base16-shell/" | |
source "$BASE16_SHELL/profile_helper.fish" | |
end | |
# TODO: discover if these break on not-MacOS. | |
set -g fish_user_paths "/usr/local/opt/icu4c/bin" $fish_user_paths | |
set -g fish_user_paths "/usr/local/opt/icu4c/sbin" $fish_user_paths | |
set -g fish_user_paths "$HOME/Library/Python/3.8/bin" $fish_user_paths | |
set -g fish_user_paths "/usr/local/opt/python@3.8/bin" $fish_user_paths | |
set -gx PATH /nix/var/nix/profiles/default/bin $PATH | |
set -gx PATH $HOME/.local/bin $PATH | |
# >>> conda initialize >>> | |
# !! Contents within this block are managed by 'conda init' !! | |
eval $HOME/anaconda3/bin/conda "shell.fish" "hook" $argv | source | |
# <<< conda initialize |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment