X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=zsh%2F.zshrc;h=27a1bde2de5d70f12f08f26cb86c562eee96def7;hb=81a790a42be7b3338037d3b54a6ce306021ba08a;hp=77a5aba13b99e73e407d679d5cb8e0b396b2dde8;hpb=31586bbef7fc824c6f9c2476edcd71a3ff52e16d;p=dotfiles.git diff --git a/zsh/.zshrc b/zsh/.zshrc index 77a5aba..27a1bde 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 @@ -124,6 +125,7 @@ alias Gm="git diff --name-only --diff-filter=M" alias Gam="git commit --amend" 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' -" @@ -207,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 -print -o -type l -print" +export FZF_ALT_C_COMMAND=_fzf_find + +. ~/work/fzf/shell/key-bindings.zsh +# }}}