71 lines
1.6 KiB
Text
71 lines
1.6 KiB
Text
export VISUAL=vim
|
|
export EDITOR="$VISUAL"
|
|
|
|
#generic
|
|
alias ls='ls --color=auto'
|
|
alias grep='grep --color=auto'
|
|
alias hg='history | grep'
|
|
alias pg='ps aux | grep'
|
|
alias k9='kill -9'
|
|
|
|
# git
|
|
alias gs="git status"
|
|
alias gc="git commit -m"
|
|
alias ga="git add"
|
|
alias gcc="git checkout -b"
|
|
|
|
alias activate="source venv/bin/activate"
|
|
|
|
alias dmenu="dmenu -nf '#BBBBBB' -nb '#3A515D' -sb '#83C092' -sf '#000000' -fn 'monospace-16'"
|
|
|
|
alias dotfiles='/usr/bin/git --git-dir=$HOME/dotfiles/ --work-tree=$HOME'
|
|
|
|
# PYWAL ---------------------
|
|
# Import colorscheme from 'wal' asynchronously
|
|
# & # Run the process in the background.
|
|
# ( ) # Hide shell job control messages.
|
|
# Not supported in the "fish" shell.
|
|
alias wal="wal -o $HOME/.config/wal/done.sh"
|
|
(cat ~/.cache/wal/sequences &)
|
|
|
|
# Alternative (blocks terminal for 0-3ms)
|
|
cat ~/.cache/wal/sequences
|
|
|
|
# To add support for TTYs this line can be optionally added.
|
|
source ~/.cache/wal/colors-tty.sh
|
|
|
|
|
|
nvm() {
|
|
unset -f nvm
|
|
export NVM_DIR="$HOME/.nvm"
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
|
|
nvm "$@"
|
|
}
|
|
|
|
# pnpm
|
|
export PNPM_HOME="/home/dominic/.local/share/pnpm"
|
|
case ":$PATH:" in
|
|
*":$PNPM_HOME:"*) ;;
|
|
*) export PATH="$PNPM_HOME:$PATH" ;;
|
|
esac
|
|
# pnpm end
|
|
|
|
# Created by `pipx` on 2025-11-23 18:01:25
|
|
export PATH="$PATH:/home/dominic/.local/bin"
|
|
|
|
GTK_IM_MODULE=fcitx
|
|
QT_IM_MODULE=fcitx
|
|
XMODIFIERS=@im=fcitx
|
|
SDL_IM_MODULE=fcitx
|
|
INPUT_METHOD=fcitx
|
|
GLFW_IM_MODULE=ibus
|
|
|
|
if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then
|
|
startx
|
|
fi
|
|
|
|
export TERM="xterm-kitty"
|
|
export PICO_SDK_PATH=/usr/share/pico-sdk
|
|
|
|
export PATH="$HOME/bin:$PATH"
|