From 560d272d4d46f6511013b8389dc88e768b15e3df Mon Sep 17 00:00:00 2001 From: finga Date: Tue, 23 Feb 2016 22:53:18 +0100 Subject: [PATCH] bashish navigation --- .zshrc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 3918114..4d3c8ee 100644 --- a/.zshrc +++ b/.zshrc @@ -28,6 +28,10 @@ promptinit PROMPT="%{$fg_no_bold[blue]%}%n%{$reset_color%}%{$fg_no_bold[red]%}%#%{$reset_color%}%{$fg_no_bold[blue]%}%m%{$reset_color%}%{$fg_no_bold[green]%}%~:%{$fg_no_bold[yellow]%}%?%{$fg_no_bold[green]%}$ %{$reset_color%}" RPROMPT="%{$fg_no_bold[green]%}%~%{$reset_color%} [%{$fg_no_bold[yellow]%}%*%{$reset_color%}]" +# Bashish navigation +autoload -U select-word-style +select-word-style bash + # Show cwd in titlebar precmd() { tab_label=${PWD/${HOME}/\~} @@ -40,4 +44,4 @@ REPORTTIME=1 alias ../..='cd ../..' alias ../../..='cd ../../..' -. ~/.autoload +. ~/.profile