From 8de117cba68b84d5ab5dc67b65c0765694960075 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 16 Nov 2011 13:36:15 +0100 Subject: [PATCH] csh/rc: Start zsh as login shell. --- csh/rc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 -- 2.44.1