diff options
Diffstat (limited to '.emacs.d/init.el~')
| -rw-r--r-- | .emacs.d/init.el~ | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.emacs.d/init.el~ b/.emacs.d/init.el~ index c63707d..99dffce 100644 --- a/.emacs.d/init.el~ +++ b/.emacs.d/init.el~ @@ -11,7 +11,6 @@ ;; just comment it out by adding a semicolon to the start of the line. ;; You may delete these explanatory comments. ;; (package-initialize) - (setq debug-on-error t) ;; Path @@ -25,9 +24,6 @@ ;; Line number ;; (global-linum-mode 1) -;; Highlight current line -(when window-system - (global-hl-line-mode)) ;; Disable visual bell (setq ring-bell-function 'ignore) ;; Transparent @@ -52,12 +48,17 @@ (require 'init-flycheck) (require 'init-expand-region) (require 'init-helm) + (require 'init-neotree) (require 'init-window-numbering)) ;; Theme (load-theme 'misterioso t) ;; Make highlight color differ from the highlight line -(set-face-attribute 'region nil :background "#213") + +;; Highlight current line, and keep syntax hightlight(:interit nil) +(when window-system + (global-hl-line-mode)) +(set-face-attribute 'hl-line nil :inherit nil :background "gray13") ;;---------------------------------------------------------------------------- ;; Variables configured via the interactive 'customize' interface |
