From ae5ba58dfb2fcd2343328b12b36d30c6e35ae8ab Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Wed, 2 Dec 2015 20:40:12 +0100 Subject: Emacs: Fix binding of persp-switch key --- tag-emacs/emacs.d/init.org | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tag-emacs/emacs.d/init.org') diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 58088074..a4729baf 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -141,11 +141,12 @@ it needs hooking into projectile and a key bound to switch between projects. #+BEGIN_SRC emacs-lisp (use-package perspective - :bind (("s-p" . persp-switch)) + :bind* ("s-p" . persp-switch) :init (progn (persp-mode))) - (use-package persp-projectile) + (use-package persp-projectile + :ensure nil) #+END_SRC ** vc -- cgit 1.4.1 From 4021164d17057e5f195f886972873705dc0aa50c Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Wed, 2 Dec 2015 20:40:43 +0100 Subject: Emacs: Improve contrast of window chrome --- tag-emacs/emacs.d/init.org | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tag-emacs/emacs.d/init.org') diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index a4729baf..4cf15664 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -250,6 +250,8 @@ lot of modes. #+BEGIN_SRC emacs-lisp (use-package solarized-theme :config (progn + (setq solarized-distinct-fringe-background t) + (setq solarized-high-contrast-mode-line t) (load-theme 'solarized-light t))) #+END_SRC -- cgit 1.4.1 From 1efcbaeba314c7c737881499a0c21126928b29e6 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 4 Dec 2015 17:54:38 +0100 Subject: Emacs: Tinker with font-locking settings --- tag-emacs/emacs.d/init.org | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tag-emacs/emacs.d/init.org') diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 4cf15664..2e8f88bb 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -307,10 +307,10 @@ because I manage those in my [[file:~/projects/dotfiles/tag-xresources/xresource Allow font-lock-mode to do background parsing. I’m not really sure if these settings are particularly useful #+BEGIN_SRC emacs-lisp - (setq jit-lock-stealth-time 1 + (setq jit-lock-stealth-time nil jit-lock-stealth-load 100 - jit-lock-chunk-size 1000 - jit-lock-defer-time 0.01 + jit-lock-chunk-size 300 + jit-lock-defer-time nil font-lock-maximum-decoration '((dired-mode . 1) (t . t))) #+END_SRC -- cgit 1.4.1