mirror of
https://github.com/Feliix42/dotfiles.git
synced 2024-11-22 14:06:30 +00:00
64 lines
1.8 KiB
Fish
64 lines
1.8 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"
|
||
|
|
||
|
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"
|
||
|
|
||
|
# kitty terminal emulator auto completion
|
||
|
# kitty + complete setup fish | source
|
||
|
|
||
|
# 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)
|
||
|
|
||
|
###### Nix Setup ######
|
||
|
# include this plugin so nix will work
|
||
|
# https://github.com/NixOS/nix/issues/1512
|
||
|
# https://github.com/oh-my-fish/plugin-foreign-env
|
||
|
set fish_function_path $fish_function_path $HOME/.config/fish/plugin-foreign-env/functions
|
||
|
|
||
|
# initialize nix
|
||
|
fenv source '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh'
|