dotfiles/.config/zsh/.zshrc

190 lines
5.5 KiB
Bash
Raw Normal View History

GITSTATUS_LOG_LEVEL=DEBUG
2020-06-03 10:27:29 +00:00
# Commands
if test "$PWD" = "$HOME" && test "$0" != "$SHELL"; then
2020-06-26 21:27:38 +00:00
neofetch --config $XDG_CONFIG_HOME/neofetch/config-short.conf
task next limit:3
timew | head -3
fi 2>/dev/null || return 0
2020-06-03 10:27:29 +00:00
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.config/zsh/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
#if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
# source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
#fi
export PATH=$HOME/.local/bin/scripts:$HOME/.local/bin:$PATH:/opt/android/sdk/platform-tools:$XDG_CONFIG_HOME/emacs/bin
2020-03-08 18:58:52 +00:00
2020-06-26 21:27:38 +00:00
export CONFIG_ZSH="$XDG_CONFIG_HOME/zsh"
export CONFIG_SHELLS="$XDG_CONFIG_HOME/shell"
export ZSH="$XDG_DATA_HOME/oh-my-zsh"
2020-03-08 18:58:52 +00:00
DEFAULT_USER=$USER
ZSH_THEME="powerlevel10k/powerlevel10k"
2020-06-03 10:27:29 +00:00
#POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(root_indicator context dir rbenv vcs) POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status background_jobs time)
#ZSH_CUSTOM=$ZSH/custom
2020-03-08 18:58:52 +00:00
2020-06-03 10:27:29 +00:00
HIST_STAMPS="yyyy-mm-dd" # history command timestamps
2020-03-08 18:58:52 +00:00
2020-06-03 10:27:29 +00:00
# COMPLETION
# ENABLE_CORRECTION="true" # Correct command arguments
HYPHEN_INSENSITIVE="true" # - and _ interchangeable
COMPLETION_WAITING_DOTS="true" # Dots while waiting for completion
DISABLE_UNTRACKED_FILES_DIRTY="true" # DOn't mark untracked files as dirty - speeds up status check
2020-03-08 18:58:52 +00:00
2020-06-03 10:27:29 +00:00
# Plugins can be found in $ZSH/plugins/
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
2020-03-08 18:58:52 +00:00
plugins=(
#git
gitfast
2020-10-13 09:19:09 +00:00
#git-auto-fetch
2020-06-03 10:27:29 +00:00
z
fast-syntax-highlighting
zsh-autosuggestions
zsh-vim-mode
2020-10-13 09:16:07 +00:00
history-substring-search
2020-03-08 18:58:52 +00:00
)
2020-06-03 10:27:29 +00:00
_comp_options+=(globdots) # Show files starting with dot in autocomplete
fpath=($fpath "$CONFIG_ZSH/zsh_completion") # Custom completions
2020-06-26 21:27:38 +00:00
ZSH_COMPDUMP="$XDG_CACHE_HOME/zsh/zcompdump-$ZSH_VERSION" # Cache completions
DISABLE_UPDATE_PROMPT=true
2020-03-08 18:58:52 +00:00
source $ZSH/oh-my-zsh.sh
## Functions
tab_list_files() {
if [[ $#BUFFER == 0 ]]; then
BUFFER="ls "
CURSOR=3
zle list-choices
zle backward-kill-word
elif [[ $BUFFER =~ ^[[:space:]][[:space:]].*$ ]]; then
BUFFER="./"
CURSOR=2
zle list-choices
[ -z ${TAB_LIST_FILES_PREFIX+x} ] && BUFFER=" " CURSOR=2
elif [[ $BUFFER =~ ^[[:space:]]*$ ]]; then
BUFFER="cd "
CURSOR=3
zle list-choices
[ -z ${TAB_LIST_FILES_PREFIX+x} ] && BUFFER=" " CURSOR=1
else
BUFFER_=$BUFFER
CURSOR_=$CURSOR
zle expand-or-complete || zle expand-or-complete || {
BUFFER="ls "
CURSOR=3
zle list-choices
BUFFER=$BUFFER_
CURSOR=$CURSOR_
}
fi
}
zle -N tab_list_files
bindkey '^I' tab_list_files
fancy-ctrl-z() {
if [[ $#BUFFER -eq 0 ]]; then
bg
zle redisplay
else
zle push-input
fi
}
zle -N fancy-ctrl-z
bindkey '^z' fancy-ctrl-z
bindkey '^q' push-line-or-edit
export KEYTIMEOUT=1
# Obsolete: zsh-vim-mode plugin - Custom VIM bindings {{{
2020-06-03 10:27:29 +00:00
#bindkey -v
2020-03-08 18:58:52 +00:00
#autoload -Uz history-search-end
#
#zle -N history-beginning-search-backward-end history-search-end
#zle -N history-beginning-search-forward-end history-search-end
#
#bindkey -M vicmd '^[[A' history-beginning-search-backward-end \
# '^[OA' history-beginning-search-backward-end \
# '^[[B' history-beginning-search-forward-end \
# '^[OB' history-beginning-search-forward-end
#bindkey -M viins '^[[A' history-beginning-search-backward-end \
# '^[OA' history-beginning-search-backward-end \
# '^[[B' history-beginning-search-forward-end \
# '^[OB' history-beginning-search-forward-end
2020-06-03 10:27:29 +00:00
# }}}
2020-03-08 18:58:52 +00:00
# Obsolete: powerlevel10k - Show time on the right after executing command {{{
2020-03-08 18:58:52 +00:00
# strlen() {
# FOO=$1
# local zero='%([BSUbfksu]|([FB]|){*})'
# LEN=${#${(S%%)FOO//$~zero/}}
# echo $LEN
# }
# preexec() {
# DATE=$( date +"[%H:%M:%S]" )
# local len_right=$( strlen "$DATE" )
# len_right=$(( $len_right+1 ))
# local right_start=$(($COLUMNS - $len_right))
#
# local len_cmd=$( strlen "$@" )
# local len_prompt=$(strlen "$PROMPT" )
# local len_left=$(($len_cmd+$len_prompt))
#
# RDATE="\033[${right_start}C ${DATE}"
#
# if [ $len_left -lt $right_start ]; then
# # command does not overwrite right prompt - ok to move up one line
# echo -e "\033[1A${RDATE}"
# else
# echo -e "${RDATE}"
# fi
# }
2020-06-03 10:27:29 +00:00
# }}}
2020-03-08 18:58:52 +00:00
## User configuration
# turn on spelling correction
setopt correct
# don't save duplicates in command history
setopt histignoredups
2021-02-16 12:08:56 +00:00
setopt EXTENDED_GLOB
unsetopt CASE_GLOB
2020-06-03 10:27:29 +00:00
setopt pipefail
# Enable zmv (see ZSHCONTRIB(1))
2020-03-08 18:58:52 +00:00
autoload zmv
alias zmv='noglob zmv'
2021-02-15 19:57:17 +00:00
alias zmw='noglob zmv -W'
2020-03-08 18:58:52 +00:00
alias zcp='noglob zmv -C'
alias zln='noglob zmv -L'
alias zsy='noglob zmv -Ls'
which nvim >/dev/null && export EDITOR='nvim' || export EDITOR='vim'
2020-11-22 18:55:59 +00:00
for file in $CONFIG_SHELLS/*; do source $file; done
# GENERATED SHIT
2020-03-08 18:58:52 +00:00
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# To customize prompt, run `p10k configure` or edit .p10k.zsh.
test -s $CONFIG_ZSH/.p10k.zsh && source $CONFIG_ZSH/.p10k.zsh
2020-06-03 10:27:29 +00:00
test -d /usr/share/fzf && source /usr/share/fzf/key-bindings.zsh && source /usr/share/fzf/completion.zsh
2020-11-22 18:55:59 +00:00
test -f $XDG_CONFIG_HOME/broot/launcher/bash/br && source $XDG_CONFIG_HOME/broot/launcher/bash/br
2021-02-18 10:58:28 +00:00
# Nix
test -e /home/janek/.nix-profile/etc/profile.d/nix.sh && source /home/janek/.nix-profile/etc/profile.d/nix.sh
which direnv >/dev/null && eval "$(direnv hook zsh)"
2021-02-16 12:08:56 +00:00
true