29 lines
546 B
Bash
29 lines
546 B
Bash
# Created by newuser for 5.9
|
|
|
|
ZSHD="$HOME/.zsh.d"
|
|
|
|
if [[ ! -v ZSH_GRML_SOURCED ]]; then
|
|
source $ZSHD/grml-zshrc
|
|
fi
|
|
|
|
source "$ZSHD/rsync.zsh"
|
|
source "$ZSHD/misc.zsh"
|
|
source "$ZSHD/pdf.zsh"
|
|
source "$ZSHD/completion.zsh"
|
|
source "$ZSHD/modern-utils.zsh"
|
|
source "$ZSHD/develop.zsh"
|
|
source "$ZSHD/nix.zsh"
|
|
|
|
# allow using # at begin
|
|
setopt interactivecomments
|
|
# give me back the normal `#, ^, ~` !!!
|
|
unsetopt extended_glob
|
|
|
|
# alias
|
|
export EDITOR=helix
|
|
alias edit=$EDITOR
|
|
alias vim=helix
|
|
alias dc="docker compose"
|
|
|
|
export PATH="$HOME/.local/bin:$PATH"
|