dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit fef7e44bba20d4f1bb95d4239202f6c03b868802
parent b7d0e00ce503392e5d917719d724c8a8b6b12b06
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date:   Tue, 12 Nov 2013 11:02:24 +0100

added vi mode status indicator

Diffstat:
M.zshrc | 11++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/.zshrc b/.zshrc @@ -48,6 +48,15 @@ unsetopt correctall set -o vi export EDITOR=vim +# vi mode status +function zle-line-init zle-keymap-select { + RPS1="${${KEYMAP/vicmd/-- NORMAL --}/(main|viins)/-- INSERT --}" + RPS2=$RPS1 + zle reset-prompt +} +zle -N zle-line-init +zle -N zle-keymap-select + # Add local bin folder to path export PATH=$HOME/bin:$PATH export PATH=~/bin:$PATH @@ -82,7 +91,7 @@ function marks { } # speech synth command -say() { if [[ "${1}" =~ -[a-z]{2} ]]; then local lang=${1#-}; local text="${*#$1}"; else local lang=${LANG%_*}; local text="$*";fi; mplayer "http://translate.google.com/translate_tts?ie=UTF-8&tl=${lang}&q=${text}" &> /dev/null ; } +function say { echo $* | festival --tts } # LPP (liggghts post-processing) CFDEM_pizzaPath=/home/adc/code/liggghts/lpp-git