35 lines
785 B
Fish
35 lines
785 B
Fish
set fish_greeting ""
|
|
|
|
#########################
|
|
# ALIASES #
|
|
#########################
|
|
alias ll='ls -alhF'
|
|
alias la='ls -A'
|
|
alias l='ls -CF'
|
|
. ~/.config/fish/aliases.fish
|
|
|
|
# Install "minimal" python packages
|
|
function setup-python
|
|
pip install autopep8 flake8 isort ipython pdbpp pip-tools pynvim
|
|
end
|
|
|
|
# vterm
|
|
. ~/.config/fish/vterm.fish
|
|
|
|
#########################
|
|
# THEME #
|
|
#########################
|
|
set -g fish_term24bit 1
|
|
set -g theme_color_scheme zenburn
|
|
|
|
#########################
|
|
# MISC #
|
|
#########################
|
|
set -x VIRTUAL_ENV_DISABLE_PROMPT 1
|
|
|
|
set -x PGHOST localhost
|
|
set -x PYENV_ROOT "$HOME/.pyenv"
|
|
set -x PATH "$PYENV_ROOT/bin" $PATH
|
|
set -x PATH "/home/marc/.emacs.d/bin" $PATH
|
|
set -x PATH "/home/marc/.local/bin" $PATH
|