2020-04-18 14:46:16 +03:00
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|
2020-12-02 12:14:20 +02:00
|
|
|
|
|
|
|
# so that i can autoload -Uz local functions
|
|
|
|
fpath=( ~/.config/zsh/functions $fpath)
|
|
|
|
|
2018-11-12 16:14:14 +02:00
|
|
|
# Virtualenv support
|
|
|
|
function virtual_env_prompt () {
|
|
|
|
REPLY=${VIRTUAL_ENV+(${VIRTUAL_ENV:t}) }
|
|
|
|
}
|
|
|
|
grml_theme_add_token virtual-env -f virtual_env_prompt '%F{magenta}' '%f'
|
2020-04-18 14:46:16 +03:00
|
|
|
|
|
|
|
function config_env_prompt () {
|
|
|
|
REPLY=${CONFIG_ENV+(${CONFIG_ENV:t}) }
|
|
|
|
}
|
2020-04-18 21:16:57 +03:00
|
|
|
grml_theme_add_token config-env -f config_env_prompt
|
2020-04-18 14:46:16 +03:00
|
|
|
|
|
|
|
zstyle ':prompt:grml:left:setup' items rc config-env virtual-env change-root user at host path vcs percent
|
|
|
|
|
2019-04-02 17:10:34 +03:00
|
|
|
# Disable right side sad smiley, works nicer with resized terminal
|
|
|
|
zstyle ':prompt:grml:right:setup' use-rprompt false
|
2018-11-12 16:14:14 +02:00
|
|
|
|
2020-04-18 21:16:57 +03:00
|
|
|
# Git based dotfiles setup start
|
2020-04-18 14:46:16 +03:00
|
|
|
function _config_activate {
|
|
|
|
export GIT_DIR=$HOME/.cfg/
|
|
|
|
export GIT_WORK_TREE=$HOME
|
|
|
|
CONFIG_ENV="config"
|
|
|
|
}
|
|
|
|
|
|
|
|
function _config_deactivate {
|
|
|
|
unset GIT_DIR GIT_WORK_TREE CONFIG_ENV
|
|
|
|
}
|
2018-11-12 16:14:14 +02:00
|
|
|
|
2020-04-18 14:46:16 +03:00
|
|
|
function config {
|
|
|
|
if [[ -n "$1" ]]; then
|
|
|
|
_config_activate
|
|
|
|
git $@
|
|
|
|
_config_deactivate
|
|
|
|
return
|
|
|
|
elif [[ -z "${CONFIG_ENV}" ]]; then
|
|
|
|
_config_activate
|
|
|
|
else
|
|
|
|
_config_deactivate
|
|
|
|
fi
|
|
|
|
}
|
2020-04-18 21:16:57 +03:00
|
|
|
# git based dotfiles setup end
|
|
|
|
|
|
|
|
# GRML profiles
|
2020-12-01 16:35:19 +02:00
|
|
|
zstyle ':chpwd:profiles:/home/arti/code/krakul(|/|/*)' profile krakul
|
|
|
|
function chpwd_profile_krakul() {
|
2020-04-18 21:16:57 +03:00
|
|
|
[[ ${profile} == ${CHPWD_PROFILE} ]] && return 1
|
|
|
|
|
2020-12-01 16:35:19 +02:00
|
|
|
export GIT_AUTHOR_EMAIL="arti@krakul.eu"
|
|
|
|
export GIT_COMMITTER_EMAIL="arti@krakul.eu"
|
2020-04-18 21:16:57 +03:00
|
|
|
}
|
2020-12-01 16:35:19 +02:00
|
|
|
function chpwd_leave_profile_krakul() {
|
2020-04-18 21:16:57 +03:00
|
|
|
unset GIT_AUTHOR_EMAIL GIT_COMMITER_EMAIL
|
|
|
|
}
|
|
|
|
chpwd_profiles
|
|
|
|
|
2020-12-01 16:35:19 +02:00
|
|
|
hash -d krakul=~/code/krakul # shorten dir name in prompt
|
2020-04-18 21:16:57 +03:00
|
|
|
|
|
|
|
# Enable or disable python virtual env
|
|
|
|
function chpwd_auto_python_venv() {
|
2020-04-19 00:06:22 +03:00
|
|
|
local venv_dir
|
|
|
|
local cur_dir="${PWD}"
|
|
|
|
while [[ "${cur_dir}" != / ]]; do
|
|
|
|
if [[ -f "${cur_dir}/venv/bin/activate" ]]; then
|
|
|
|
venv_dir="${cur_dir}/venv"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
# :P does `realpath(3)`
|
|
|
|
# :h removes 1 trailing pathname component
|
|
|
|
cur_dir="${cur_dir:P:h}"
|
|
|
|
done
|
|
|
|
if [[ -z "${VIRTUAL_ENV}" ]] && [[ -n "${venv_dir}" ]]; then
|
|
|
|
# we found venv dir that is not yet activated
|
|
|
|
source "${venv_dir}"/bin/activate
|
|
|
|
elif [[ -z "${venv_dir}" ]] && [[ -n "${VIRTUAL_ENV}" ]]; then
|
|
|
|
# we have activated virtual env but we cant find venv folder anymore
|
|
|
|
deactivate
|
|
|
|
fi
|
2020-04-18 21:16:57 +03:00
|
|
|
}
|
|
|
|
chpwd_functions+=(chpwd_auto_python_venv)
|
2020-04-18 14:46:16 +03:00
|
|
|
|
|
|
|
if [[ -f /etc/profile.d/vte.sh ]]; then
|
|
|
|
source /etc/profile.d/vte.sh
|
|
|
|
fi
|
2018-11-12 16:14:14 +02:00
|
|
|
|
|
|
|
function new-scratch {
|
|
|
|
cur_dir="$HOME/scratch"
|
|
|
|
new_dir="$HOME/tmp/scratch-`date +'%s'`"
|
|
|
|
mkdir -p $new_dir
|
|
|
|
ln -nfs $new_dir $cur_dir
|
|
|
|
cd $cur_dir
|
|
|
|
echo "New scratch dir ready for grinding ;>"
|
|
|
|
}
|
|
|
|
|
2020-04-27 10:16:35 +03:00
|
|
|
histsearch() { fc -lim "*$@*" 1 }
|
|
|
|
|
2018-11-12 16:14:14 +02:00
|
|
|
alias pacman="sudo pacman"
|
|
|
|
alias py="python"
|
|
|
|
alias py2="python2"
|
|
|
|
alias ll="ls -lh"
|
|
|
|
alias la="ls -a"
|
|
|
|
alias dmesg="dmesg -L"
|
|
|
|
alias disapprove="firefox 'data:text/html;base64,PGRpdiBzdHlsZT0idGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjU1dm1pbiI+JiMzMjMyO18mIzMyMzI7PC9kaXY+Cg=='"
|
|
|
|
alias ipy="ipython"
|
|
|
|
alias htop="htop -d 10"
|
2020-04-18 14:46:16 +03:00
|
|
|
alias ip="ip -color=auto"
|
2018-11-12 16:14:14 +02:00
|
|
|
alias cp="cp --reflink=auto"
|
2019-01-14 15:56:53 +02:00
|
|
|
alias cal="cal -w3"
|
2018-11-12 16:14:14 +02:00
|
|
|
alias gitg="LANG=en_US.UTF-8 gitg"
|
|
|
|
|
2020-10-19 17:46:47 +03:00
|
|
|
if [[ -f /usr/share/fzf/key-bindings.zsh && -f /usr/share/fzf/completion.zsh ]]; then
|
|
|
|
source /usr/share/fzf/key-bindings.zsh
|
|
|
|
source /usr/share/fzf/completion.zsh
|
2020-10-20 15:51:36 +03:00
|
|
|
# default is 40%, and that is too much, limit to less lines
|
|
|
|
FZF_TMUX_HEIGHT=6
|
2020-10-20 15:57:46 +03:00
|
|
|
# other shortcuts already use reverse, except history search for some reason..
|
|
|
|
FZF_CTRL_R_OPTS="--reverse"
|
2020-10-22 12:51:43 +03:00
|
|
|
|
|
|
|
# Copied form key-bindings.zsh
|
|
|
|
# CTRL-R - Paste the selected command from history into the command line
|
|
|
|
fzf-history-widget() {
|
|
|
|
local selected num
|
|
|
|
setopt localoptions noglobsubst noposixbuiltins pipefail no_aliases 2> /dev/null
|
|
|
|
selected=( $(fc -rl 1 | perl -ne 'print if !$seen{(/^\s*[0-9]+\**\s+(.*)/, $1)}++' |
|
|
|
|
FZF_DEFAULT_OPTS="--height ${FZF_TMUX_HEIGHT:-40%} $FZF_DEFAULT_OPTS -n2..,.. --tiebreak=index --bind=ctrl-r:toggle-sort --expect=ctrl-e $FZF_CTRL_R_OPTS --query=${(qqq)LBUFFER} +m" $(__fzfcmd)) )
|
|
|
|
local ret=$?
|
|
|
|
if [ -n "$selected" ]; then
|
|
|
|
local accept=0
|
|
|
|
if [[ $selected[1] == ctrl-e ]]; then
|
|
|
|
accept=1
|
|
|
|
shift selected
|
|
|
|
fi
|
|
|
|
num=$selected[1]
|
|
|
|
if [ -n "$num" ]; then
|
|
|
|
zle vi-fetch-history -n $num
|
|
|
|
[[ $accept = 0 ]] && zle accept-line
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
zle reset-prompt
|
|
|
|
return $ret
|
|
|
|
}
|
|
|
|
zle -N fzf-history-widget
|
|
|
|
bindkey '^R' fzf-history-widget
|
2020-04-18 14:46:16 +03:00
|
|
|
fi
|
2018-11-12 16:14:14 +02:00
|
|
|
|
2019-04-02 17:10:34 +03:00
|
|
|
EDITOR=nvim
|
|
|
|
VISUAL=nvim
|
2020-05-05 17:26:22 +03:00
|
|
|
MAILCHECK=0
|
|
|
|
MAIL=~/Mail
|
2018-11-12 16:14:14 +02:00
|
|
|
|
2019-01-01 23:29:32 +02:00
|
|
|
# iostat colors
|
|
|
|
export S_COLORS=auto
|
|
|
|
|
2020-04-18 14:46:16 +03:00
|
|
|
if [[ -f /usr/share/zsh/site-functions/git-flow-completion.zsh ]];then
|
|
|
|
source /usr/share/zsh/site-functions/git-flow-completion.zsh
|
|
|
|
fi
|
2018-11-12 16:14:14 +02:00
|
|
|
|
2020-10-21 19:01:01 +03:00
|
|
|
export PATH="/home/arti/.bin:/home/arti/.local/bin:$(ruby -e 'print Gem.user_dir')/bin:$PATH"
|
2018-11-12 16:14:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
HISTSIZE=100000
|
|
|
|
SAVEHIST=100000
|
|
|
|
|
|
|
|
unsetopt share_history
|
|
|
|
setopt INC_APPEND_HISTORY_TIME
|
|
|
|
|
|
|
|
|
|
|
|
#pkg not found
|
|
|
|
if [ -f /usr/share/doc/pkgfile/command-not-found.zsh ]; then
|
2020-04-18 14:46:16 +03:00
|
|
|
source /usr/share/doc/pkgfile/command-not-found.zsh
|
2018-11-12 16:14:14 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
function gedit {
|
|
|
|
local REAL_PATH=$PATH;
|
|
|
|
if [ -n "$_OLD_VIRTUAL_PATH" ] ; then
|
|
|
|
REAL_PATH=$_OLD_VIRTUAL_PATH;
|
|
|
|
fi
|
|
|
|
PATH=$REAL_PATH env -u VIRTUAL_ENV /usr/bin/gedit $@;
|
|
|
|
}
|
2019-03-08 14:45:36 +02:00
|
|
|
|
|
|
|
# i don't like that systemd by default uses a pager
|
|
|
|
export SYSTEMD_PAGER=''
|
2019-06-20 13:01:14 +03:00
|
|
|
|
|
|
|
# set man max width
|
|
|
|
export MANWIDTH=80
|
2020-04-14 17:41:39 +03:00
|
|
|
|
|
|
|
# make npm gyp faster
|
|
|
|
export JOBS=8
|
2020-10-20 16:05:49 +03:00
|
|
|
|
|
|
|
# https://neovim.io/doc/user/various.html#less
|
|
|
|
function vless {
|
|
|
|
/usr/share/nvim/runtime/macros/less.sh $@
|
|
|
|
}
|
2020-12-02 12:14:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Paste handling
|
|
|
|
autoload -Uz bracketed-paste-magic
|
|
|
|
zle -N bracketed-paste bracketed-paste-magic
|
|
|
|
|
|
|
|
autoload -Uz bracketed-paste-url-magic
|
|
|
|
zle -N bracketed-paste bracketed-paste-url-magic
|