diff options
-rw-r--r-- | tag-emacs/emacs.d/init.org | 4 | ||||
-rw-r--r-- | tag-zsh/config/zsh/zshenv | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index ad025d5d..d2fd8139 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -232,8 +232,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 diff --git a/tag-zsh/config/zsh/zshenv b/tag-zsh/config/zsh/zshenv index e62dca5c..e75704ca 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 |