summaryrefslogtreecommitdiff
path: root/.emacs.d/init.el~
diff options
context:
space:
mode:
authorSteve Lee <me@xiangyangli.com>2019-05-09 08:46:00 +0800
committerSteve Lee <me@xiangyangli.com>2019-05-09 08:46:00 +0800
commit8fccba38e0d669dc1b30882b110c155ee84f63ca (patch)
tree08844b98e486e37f32ad214174a50df619f89efc /.emacs.d/init.el~
parentd2821eb3ed37512fe09df0de81a3227b49f0ce14 (diff)
downloaddotfiles-8fccba38e0d669dc1b30882b110c155ee84f63ca.tar.xz
dotfiles-8fccba38e0d669dc1b30882b110c155ee84f63ca.zip
add slime
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