commit 8755e11128eee526fe1e81445682b4595208ad68 parent cb105d944ef214798519eb08de8d4d9a542f17f3 Author: Daniel Moch <daniel@danielmoch.com> Date: Sun, 22 Apr 2018 09:17:53 -0400 Always set title when running in bash or zsh Diffstat:
M | .vim/vimrc | | | 3 | +++ |
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/.vim/vimrc b/.vim/vimrc @@ -392,5 +392,8 @@ else endif set autowrite set pastetoggle=<F2> +if $SHELL =~ 'zsh' || $SHELL =~ 'bash' + set title +endif let &titlestring=hostname() . ':%t%h' " }}}