diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-02-13 16:19:49 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-02-13 16:19:49 -0800 |
commit | 1fb60c8f76821b867387ccc066f67cd53aaf7578 (patch) | |
tree | 91644faf14d182d3db7002242c6119d73c1c8d7b /emacs.d/core | |
parent | [emacs] set options for 'dired'. (diff) | |
download | emacs.d-1fb60c8f76821b867387ccc066f67cd53aaf7578.tar.gz |
[emacs] highlight the current line.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/core/core-ui.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs.d/core/core-ui.el b/emacs.d/core/core-ui.el index ff70ae3..7abb052 100644 --- a/emacs.d/core/core-ui.el +++ b/emacs.d/core/core-ui.el @@ -11,6 +11,9 @@ (setq inhibit-startup-message t) (setq initial-scratch-message ";; scratch buffer") +;; highlight the current line +(global-hl-line-mode +1) + (setq frame-title-format '(buffer-file-name "%f" ("%b"))) ;; no blink cursor |