From: Simon Ruderich Date: Wed, 16 Nov 2011 12:36:15 +0000 (+0100) Subject: csh/rc: Start zsh as login shell. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=8de117cba68b84d5ab5dc67b65c0765694960075;p=config%2Fdotfiles.git csh/rc: Start zsh as login shell. --- diff --git a/csh/rc b/csh/rc index f2f01a7..543b053 100644 --- a/csh/rc +++ b/csh/rc @@ -1,9 +1,10 @@ # Csh configuration file. -# Start Zsh in interactive mode, otherwise do nothing. +# Start Zsh in interactive login mode, otherwise do nothing. -l is used so Zsh +# sources .zlogin and .zlogout. if ($?prompt) then - exec zsh + exec zsh -l endif # vim: ft=csh