From 614ecb408d28794985bd96459689be97ecdf87aa Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 5 Feb 2017 10:14:54 +0100 Subject: zsh: Don’t check SHLVL under X It seems to be too inconsistent --- tag-zsh/config/zsh/zshenv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tag-zsh/config/zsh/zshenv b/tag-zsh/config/zsh/zshenv index e62dca5..e75704c 100644 --- a/tag-zsh/config/zsh/zshenv +++ b/tag-zsh/config/zsh/zshenv @@ -1,4 +1,4 @@ -if [[ $SHLVL -eq 1 || (-n $DISPLAY && $SHLVL -lt 3) ]] +if [[ $SHLVL -eq 1 || -n $DISPLAY ]] then if [[ -f $ZDOTDIR/zshenv.local ]] then -- cgit 1.4.1 From bd8cffa2c4d377935bd70b4780235bbec92dc9f7 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 5 Feb 2017 10:15:19 +0100 Subject: Emacs: Fix Emacs font-size --- tag-emacs/emacs.d/init.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index cb47fe6..ac4d4e2 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -223,8 +223,8 @@ because I manage those in my [[file:~/projects/dotfiles/tag-xresources/xresource (ap/set-fonts "SF Mono" 12 "Lucida Grande" 12 t) (ap/set-fonts "Monaco" 10 "Lucida Grande" 12 nil)))) ((eq window-system 'x) - (set-fontset-font "fontset-default" 'unicode (font-spec :name "Terminus" :size 12)) - (ap/set-fonts "Terminus" 12 "Lucida" 10 nil)))) + (set-fontset-font "fontset-default" 'unicode (font-spec :name "Terminus" :size 10)) + (ap/set-fonts "Terminus" 10 "Lucida" 10 nil)))) (ap/set-fonts-according-to-system)) #+END_SRC -- cgit 1.4.1