Make config more emacsclient-friendly

This commit is contained in:
Henrik Lissner 2017-04-22 01:49:15 -04:00
parent 72bf9df905
commit b47b951a41
5 changed files with 24 additions and 10 deletions

View file

@ -48,12 +48,13 @@
'("*Command Line*" :size 8))
;; Set cursor colors later, presumably once theme is loaded
(add-hook! 'after-init-hook
(defun +evil*init-cursors (&rest _)
(setq evil-default-cursor (face-attribute 'cursor :background nil t)
evil-normal-state-cursor 'box
evil-emacs-state-cursor `(,(face-attribute 'warning :foreground nil nil) box)
evil-insert-state-cursor 'bar
evil-visual-state-cursor 'hollow))
(advice-add #'load-theme :after #'+evil*init-cursors)
;; highlight matching delimiters where it's important
(defun +evil|show-paren-mode-off () (show-paren-mode -1))