X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=zsh%2F.zshrc;h=cede543bcdc428b2619810e2c6b52bb67038f961;hb=897d57386b7c3ac1233f40f3a182a8fb547c9201;hp=29ad84c0f7823bd00f5f1d7cb65bda11cc42acb6;hpb=339e63eddab5df2bd3e806d895b88e9f76b3449a;p=dotfiles.git diff --git a/zsh/.zshrc b/zsh/.zshrc index 29ad84c..cede543 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -5,6 +5,7 @@ setopt INTERACTIVE_COMMENTS setopt GLOB_STAR_SHORT GLOB_DOTS EXTENDED_GLOB setopt NO_NOMATCH setopt AUTO_PUSHD PUSHD_IGNORE_DUPS +setopt PIPE_FAIL setopt RM_STAR_SILENT export LISTMAX=9999 @@ -13,7 +14,7 @@ export LISTMAX=9999 # History options {{{ setopt APPEND_HISTORY SHARE_HISTORY INC_APPEND_HISTORY HIST_IGNORE_ALL_DUPS setopt HIST_IGNORE_SPACE -HISTORY_IGNORE="(yt* *|t *|t|mmfileget *|arr|rss)" +HISTORY_IGNORE="(yt* *|t *|t|sdcv *|mmfileget *|arr)" # }}} # Vi mode {{{ @@ -82,6 +83,8 @@ alias m="less " alias -g M="| less" alias -g W="| wc -l" alias mc="mc --nomouse" +alias sent="mutt -f =sent-\`date '+%y-%m'\`" +alias zc=~/bin/dc-wrapped.sh f() { # find . -name "*$1*" -print @@ -121,10 +124,10 @@ alias Gs="git show --show-signature" alias Gm="git diff --name-only --diff-filter=M" alias Gam="git commit --amend" -git_common="--oneline --abbrev-commit" -alias Gl="git log $git_common --graph --decorate=short" -alias Gr="git --no-pager log $git_common -n 20 | perl -ne 'print \"@~\$n \$_\"; \$n++'" -alias Grr="git --no-pager log $git_common --graph -n 1024 | vi -c 'setlocal filetype=gitrebase buftype=nofile noswapfile' -" +alias Gl="git log --oneline --graph --decorate=short" +alias Gld="git log --format=format:'%ai %Cgreen%h%Creset %s'" +alias Gr="git --no-pager log --oneline -n 20 | perl -ne 'print \"@~\$n \$_\"; \$n++'" +alias Grr="git --no-pager log --oneline --graph -n 1024 | vi -c 'setlocal filetype=gitrebase buftype=nofile noswapfile' -" bindkey -s "OR" " git status --short\n" # F3 # }}} @@ -160,15 +163,9 @@ mailpath=( ~/mail/arbeit"?Neue Nachrichten in =arbeit" ) alias arr="mutt -f \=arbeit -e 'source ~/.mutt/accounts/stcnet.ru'" -alias rss="mutt -f \=rss" bindkey -s "OP" " inc\n" # F1 # }}} -# Calculator {{{ -autoload -U zcalc -alias zc="zcalc" -# }}} - # Named directories {{{ . ~/.zhashd # }}} @@ -196,11 +193,12 @@ autoload -U complist ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets) . ~/work/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh typeset -A ZSH_HIGHLIGHT_STYLES -ZSH_HIGHLIGHT_STYLES[assign]="fg=cyan" +ZSH_HIGHLIGHT_STYLES[assign]="fg=yellow" ZSH_HIGHLIGHT_STYLES[commandseparator]="fg=red" ZSH_HIGHLIGHT_STYLES[single-hyphen-option]="fg=green,bold" ZSH_HIGHLIGHT_STYLES[double-hyphen-option]="fg=green" ZSH_HIGHLIGHT_STYLES[globbing]="fg=magenta" +ZSH_HIGHLIGHT_STYLES[global-alias]="fg=yellow,bold" ZSH_HIGHLIGHT_STYLES[history-expansion]="fg=magenta" ZSH_HIGHLIGHT_STYLES[redirection]="fg=red" ZSH_HIGHLIGHT_STYLES[path]="fg=white,underline" @@ -211,3 +209,19 @@ ZSH_HIGHLIGHT_STYLES[path_pathseparator]="fg=white,bold,underline" . ~/work/zsh-autosuggestions/zsh-autosuggestions.zsh ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=cyan" # }}} + +# fzf {{{ +alias -g PE="| pe" + +export FZF_DEFAULT_OPTS="--color=16 --info=inline --preview='less -N -S {}'" + +_fzf_find() { + find . \( -path "*/\.git" -o -fstype devfs -o -fstype procfs \) -prune \ + -o \( -type d $@ \) -print 2>/dev/null | cut -b3- +} + +export FZF_CTRL_T_COMMAND="_fzf_find -o -type f -o -type l" +export FZF_ALT_C_COMMAND=_fzf_find + +. ~/work/fzf/shell/key-bindings.zsh +# }}}