64 lines
1.9 KiB
Fish
64 lines
1.9 KiB
Fish
# -*- mode: shell-scrip -*-
|
|
|
|
set fish_greeting ""
|
|
|
|
################################################################################
|
|
# exa
|
|
################################################################################
|
|
|
|
if type -q exa
|
|
alias ls="exa --git -g"
|
|
set -gx EXA_COLORS "da=36:uu=33:gu=33"
|
|
end
|
|
|
|
################################################################################
|
|
# Emacs
|
|
################################################################################
|
|
|
|
set -gx EDITOR "emacs -nw"
|
|
alias emacs="emacs -nw"
|
|
alias gemacs="emacs"
|
|
|
|
################################################################################
|
|
# Deb maintainer stuff
|
|
################################################################################
|
|
|
|
set -gx DEBFULLNAME "Alexandre Tuleu"
|
|
set -gx DEBEMAIL "alexandre.tuleu.2005@polytechnique.org"
|
|
set -gx GPGKEY "5915F6ED256016C6A44E7C907F8AA0EB0F59FF97"
|
|
set -gx DEBSIGN_KEYID $GPGKEY
|
|
set -gx DEB_BUILD_OPTIONS "parallel=15"
|
|
|
|
|
|
################################################################################
|
|
# Go Lang
|
|
################################################################################
|
|
|
|
if test -x /usr/local/go/bin/go
|
|
set -gx GOROOT /usr/local/go
|
|
set -gx GOPATH $HOME/devel/go
|
|
set PATH $PATH $GOROOT/bin $GOPATH/bin
|
|
end
|
|
|
|
|
|
export MINICOM="-c on"
|
|
|
|
# >>> conda initialize >>>
|
|
# !! Contents within this block are managed by 'conda init' !!
|
|
eval /home/atuleu/miniconda3/bin/conda "shell.fish" "hook" $argv | source
|
|
# <<< conda initialize <<<
|
|
|
|
################################################################################
|
|
# direnv
|
|
################################################################################
|
|
|
|
direnv hook fish | source
|
|
|
|
|
|
|
|
################################################################################
|
|
# Starship
|
|
################################################################################
|
|
|
|
starship init fish | source
|