mirror of
https://git.decapod.one/brethil/dotfiles
synced 2024-10-31 18:01:30 +01:00
78 lines
2.5 KiB
Bash
Executable File
78 lines
2.5 KiB
Bash
Executable File
# Check for update, set DISABLE_UPDATE_PROMPT=yes to disable the prompt and automatically update
|
|
env DISABLE_UPDATE_PROMPT=$DISABLE_UPDATE_PROMPT DOTFILES=$DOTFILES zsh -f $DOTFILES/check_for_update.sh
|
|
|
|
source <(antibody init)
|
|
export ZSH=$(antibody path robbyrussell/oh-my-zsh)
|
|
export ZSH_THEME="brethil"
|
|
export VIRTUAL_ENV_DISABLE_PROMPT=1 # theme-related
|
|
|
|
antibody bundle < $DOTFILES/antibody_plugins.txt
|
|
|
|
uname="$(uname -a)"
|
|
if [[ $uname == *"ARCH"* || $uname == *"MANJARO"* ]]; then
|
|
antibody bundle < $DOTFILES/antibody_plugins_arch.txt
|
|
fi
|
|
|
|
# Enable zsh autocorrection
|
|
setopt CORRECT_ALL
|
|
|
|
# share history across multiple zsh sessions
|
|
setopt SHARE_HISTORY
|
|
# append to history
|
|
setopt APPEND_HISTORY
|
|
|
|
# adds commands as they are typed, not at shell exit
|
|
setopt INC_APPEND_HISTORY
|
|
|
|
# Execute commands without verifying after prompt substitution (!!, !$, etc)
|
|
setopt NO_HIST_VERIFY
|
|
|
|
# Fix command completions on aliases
|
|
# setopt completealiases
|
|
|
|
## Misc environment variables
|
|
|
|
# https://www.xkcd.com/378/
|
|
export EDITOR="vim" # if antibody_plugins.txt includes robbyrussell/oh-my-zsh path:plugins/vi-mode, this also sets `bindkey -v`
|
|
# Fix delete (delete! not backspace) key
|
|
bindkey -a '^[[3~' delete-char
|
|
|
|
export KEYTIMEOUT=1 # reduce the transition time between vim modes to 0.1s
|
|
|
|
export HISTSIZE=100000
|
|
export LANG=en_US.UTF-8
|
|
export LC_ALL=en_US.UTF-8
|
|
|
|
if [[ "$(command -v bat)" ]]; then
|
|
alias cat=bat
|
|
export BAT_PAGER="less -xRF"
|
|
export PAGER=bat
|
|
fi
|
|
# less options
|
|
export LESS='-RF-j12' # -j12: displays 12 lines before search results with / and ?
|
|
|
|
if [[ $SSH_CLIENT ]]; then
|
|
export SSH_AUTH_SOCK=$HOME/.ssh/ssh_auth_sock
|
|
fi
|
|
|
|
|
|
alias esource='$EDITOR $HOME/.zshrc'
|
|
alias resource='source $HOME/.zshrc'
|
|
alias dotedit='$EDITOR $DOTFILES/brethil_dotfile.sh'
|
|
# Custom definitions files
|
|
alias funedit='$EDITOR ~/.dotfiles_functions.sh'
|
|
alias aledit='$EDITOR ~/.dotfiles_aliases.sh'
|
|
|
|
# Extras
|
|
functions_file=$DOTFILES/functions.sh # Function definitions
|
|
aliases_file=$DOTFILES/aliases.sh # Aliases definitions
|
|
colors_file=$DOTFILES/colors.sh # Colors definitions
|
|
|
|
# Source extras
|
|
if [ -f $functions_file ]; then source $functions_file; else echo "[brethil-dotfiles] Couldn't load functions: $functions_file"; fi
|
|
if [ -f $aliases_file ]; then source $aliases_file; else echo "[brethil-dotfiles] Couldn't load aliases: $aliases_file"; fi
|
|
if [ -f $colors_file ]; then source $colors_file; else echo "[brethil-dotfiles] Couldn't load colors: $colors_file";fi
|
|
|
|
### SETUP PATHS ####
|
|
export PATH=$PATH:$HOME/bin
|