mirror of
https://github.com/Feliix42/dotfiles.git
synced 2024-11-22 22:16:30 +00:00
54 lines
1.4 KiB
Fish
54 lines
1.4 KiB
Fish
# manual locale override
|
|
|
|
export LANG="en_US.UTF-8"
|
|
export LC_COLLATE="en_US.UTF-8"
|
|
export LC_CTYPE="de_DE.UTF-8"
|
|
export LC_MESSAGES="en_US.UTF-8"
|
|
export LC_MONETARY="de_DE.UTF-8"
|
|
export LC_NUMERIC="de_DE.UTF-8"
|
|
export LC_TIME="de_DE.UTF-8"
|
|
export LC_ALL="en_GB.UTF-8"
|
|
|
|
fish_add_path /opt/homebrew/bin
|
|
#export PATH="/usr/local/opt/gnu-tar/libexec/gnubin:/usr/local/opt/gnu-sed/libexec/gnubin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/Library/TeX/texbin:$HOME/.cargo/bin:$HOME/.local/bin:$HOME/Library/Python/3.8/bin"
|
|
|
|
|
|
# fancier ls
|
|
alias ls="lsd"
|
|
|
|
# better vscode
|
|
alias code="codium"
|
|
|
|
# fsr password store
|
|
alias fsrpass="env PASSWORD_STORE_DIR=/Users/felix/fsr/passwords pass"
|
|
|
|
## some aliases taken from old zshrc
|
|
alias full-update="brew update; brew upgrade; brew cleanup; rustup self update; rustup update"
|
|
alias l="lsd -la"
|
|
alias calculator="python3 -i -c 'from math import *'"
|
|
alias music="screen -dR music cmus"
|
|
alias pennmush="telnet mush.pennmush.org 4201"
|
|
|
|
## fluff
|
|
alias fucking="sudo"
|
|
|
|
# mache dinge
|
|
alias mache="make"
|
|
alias alles="all"
|
|
alias sauber="clean"
|
|
alias renne="run"
|
|
|
|
|
|
# initialize starship
|
|
eval (starship init fish)
|
|
|
|
## easily share small files via my uberspace
|
|
function share
|
|
scp -q $argv gibbs:~/html/share/
|
|
echo "https://share.felixsuchert.de/"$argv
|
|
echo "https://share.felixsuchert.de/"$argv | pbcopy
|
|
end
|
|
|
|
# set up GPG pinentry
|
|
set -gx GPG_TTY (tty)
|
|
|