diff options
| author | Steve Lee <me@xiangyangli.com> | 2019-05-09 08:46:00 +0800 |
|---|---|---|
| committer | Steve Lee <me@xiangyangli.com> | 2019-05-09 08:46:00 +0800 |
| commit | 8fccba38e0d669dc1b30882b110c155ee84f63ca (patch) | |
| tree | 08844b98e486e37f32ad214174a50df619f89efc /.emacs.d/init.el | |
| parent | d2821eb3ed37512fe09df0de81a3227b49f0ce14 (diff) | |
| download | dotfiles-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 f0f0a01..1375205 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 @@ -53,12 +49,17 @@ (require 'init-expand-region) (require 'init-helm) (require 'init-neotree) + (require 'init-slime) (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 |
