From: Peng Li Date: Thu, 27 Oct 2016 16:55:07 +0000 (+0800) Subject: emacs - add elscreen package X-Git-Url: http://47.100.26.94:8080/?a=commitdiff_plain;h=b215e55934608a922e5f2bb22f33e4dc1410f550;p=dotfiles.git emacs - add elscreen package --- diff --git a/emacs.d/config.org b/emacs.d/config.org index 86aa8fd..1be198c 100644 --- a/emacs.d/config.org +++ b/emacs.d/config.org @@ -1632,6 +1632,18 @@ as a http download client tool (car (last (split-string url "/" t)))))))))) #+END_SRC +** Elscreen +#+BEGIN_SRC emacs-lisp :tangle yes :results silent + (use-package elscreen + :ensure t + :init + (setq elscreen-tab-display-control nil) + :config + (elscreen-start) + (set-face-attribute 'elscreen-tab-current-screen-face nil :foreground "black" :background "yellow") + (set-face-attribute 'elscreen-tab-other-screen-face nil :foreground "black" :background "disabledControlTextColor" :underline nil)) +#+END_SRC + * Dired ** Dired bindings =C-o= is defined as a global key for window operation, here unset it in dired mode