Skip to content

Instantly share code, notes, and snippets.

@ajitid
Created October 17, 2020 12:38
Show Gist options
  • Save ajitid/774c3832b44f910e0a629d036579efd5 to your computer and use it in GitHub Desktop.
Save ajitid/774c3832b44f910e0a629d036579efd5 to your computer and use it in GitHub Desktop.
fish config
export PATH="$PATH:/home/frefko/Downloads/platform-tools"
export PATH="/mnt/Media/proj/installed/jdk1.8.0_144/bin:$PATH"
export PATH="$HOME/.local/bin:$PATH"
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
pyenv init - | source
export PATH="$HOME/.poetry/bin:$PATH"
eval (pipenv --completion)
export PATH="$HOME/.cargo/bin:$PATH"
alias l='ls -alhp --group-directories-first --color=never'
function mkcd --description 'Create and enter directory'
if mkdir $argv
if string match -qv -- '-*' $argv[-1]
cd $argv[-1]
end
end
end
alias poetry_shell='. (dirname (poetry run which python))/activate.fish'
abbr setclip "xclip -selection c"
abbr getclip "xclip -selection c -o"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment