home/dot_config/fish/executable_config.fish
2022-03-13 18:49:25 +01:00

137 lines
3.5 KiB
Fish

# Convenience function for only setting PATH if the specified directory exists
function setpath
test -e $argv[1]; and set PATH $argv[1] $PATH
end
# Custom greeting
function fish_greeting
end
if test -z "$XDG_RUNTIME_DIR"
set -x XDG_RUNTIME_DIR "/tmp/$USER-runtime-dir"
if test ! -e "$XDG_RUNTIME_DIR"
mkdir "$XDG_RUNTIME_DIR"
chmod 0700 "$XDG_RUNTIME_DIR"
end
end
if test -e /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
fenv source /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
end
# PATH adjustment
setpath /opt/local/bin
setpath /opt/homebrew/bin
setpath ~/.rbenv/shims
setpath ~/.rbenv/bin
setpath ~/.cargo/bin
setpath ~/.nimble/bin
setpath ~/.local/bin
setpath ~/.local/bin/elixir-ls
setpath ~/.bin
setpath ~/.cask/bin
setpath ~/.npm-packages/bin
setpath ~/.n/bin
setpath /snap/bin
setpath ~/.emacs.d/bin
setpath ~/Library/Python/3.7/bin
setpath ~/.radicle/bin
setpath ~/.edgedb/bin
setpath ~/.fly/bin
setpath ~/.nimble/bin
# zoxide setup
zoxide init fish | source
# Source private stuff
source ~/.config/fish/private.fish
# Environment variables
set -x EDITOR "vim"
set -x USER "lu"
set -x SHELL (which fish)
set -x TERM xterm-256color
set -x N_PREFIX ~/n
set -x GTK_IM_MODULE ibus
set -x XMODIFIERS @im=ibus
set -x QT_IM_MODULE ibus
set -x GLFW_IM_MODULE ibus
set -x LANG en_US.UTF-8
set -x LC_ALL en_US.UTF-8
set -x LC_CTYPE en_US.UTF-8
set -x LANGUAGE en_US.UTF-8
set -x RUST_SRC_PATH (rustc --print sysroot)/lib/rustlib/src/rust/src
set -x XDG_CURRENT_DESKTOP Unity
set -x PYTHONPATH '/Users/lu/.local/pipx/venvs/pdm/lib/python3.9/site-packages/pdm/pep582' $PYTHONPATH
set -x LANG "en_US.UTF-8"
set -x TZ_LIST "Europe/Berlin;Berlin,America/New_York;US East,America/Los_Angeles;US West,Europe/London;London"
# General Aliases
alias editconfig "chezmoi edit ~/.config/fish/config.fish; and chezmoi apply; and source ~/.config/fish/config.fish"
alias getsshkey "cat ~/.ssh/id_ed25519.pub -p --color never"
alias j "z"
alias cat "bat"
alias c "cargo"
alias cr "cargo run"
alias cb "cargo build"
alias cwr "cargo watch -x run"
alias emacsd "emacs --daemon"
alias be "bundle exec"
alias doc "docker-compose"
alias rp "rustup"
alias mkt "cd (mktemp -d)"
alias y "sudo zypper"
alias czm "chezmoi"
alias r "ranger"
alias zcc "zig cc"
alias nxs "nix-shell"
alias zj "zellij"
# Git Aliases
alias g "git"
alias gs "g status --short"
alias gl "g log --color --graph --abbrev-commit --oneline"
alias gqp "g add --all; and g commit; and g push"
alias gqc "g add --all; and g commit"
alias gpl "g pull"
alias gps "g push"
alias gc "g commit"
alias gaa "g add --all"
alias gco "g checkout"
alias gse "g send-email"
alias wip "g add --all; and g commit -m WIP"
alias squish "gs; and g commit -a --amend -C HEAD"
alias editorigin "git remote set-url origin"
# Mercurial Aliases
alias h "hg"
alias ha "hg addremove"
alias hc "hg commit"
alias hps "hg push"
alias hp "hg push"
alias hpl "hg pull"
alias hs "hg status"
alias hl "hg log"
# XBPS Aliases
alias xi "sudo xbps-install"
alias xq "xbps-query"
alias xr "sudo xbps-remove"
# Aliases that overwrite other, existing commands
if command --search hub > /dev/null do
alias git "hub"
end
if command --search exa > /dev/null do
alias ls "exa"
end
# Some neat GPG shorthands
function secret
set output ~/$argv[1].(date +%s).enc
gpg --encrypt --armor --output $output $argv[1]; and echo "$argv[1] -> $output"
end
function reveal
set output (echo $argv[1] | rev | cut -c16- | rev)
gpg --decrypt --output $output $argv[1]; and echo "$argv[1] -> $output"
end