diff options
author | Aaron LI <aaronly.me@gmail.com> | 2016-05-03 17:12:49 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@gmail.com> | 2016-05-03 17:12:49 +0800 |
commit | 7cfe2369cad84b1d4dbcaca7396515cf1adfeae8 (patch) | |
tree | 732d205c9e27a797f5b7610bb804f4c4a77c5877 | |
parent | bb5e8cad82ea9a3990b685229f746da0924aa8ec (diff) | |
download | dotfiles-7cfe2369cad84b1d4dbcaca7396515cf1adfeae8.tar.bz2 |
_spacemacs: set tilde-fringe and final-newline
-rw-r--r-- | _spacemacs | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -3,7 +3,7 @@ ;; ;; Aaron LI ;; Created: 2016-04-30 -;; Updated: 2016-05-01 +;; Updated: 2016-05-03 ;; @@ -283,6 +283,10 @@ layers configuration. You are free to put any user code." (spacemacs//set-monospaced-font "Source Code Pro" "WenQuanYi Zen Hei" 14 16) ;; Complete by typing instead of waiting for the delay timer (setq company-idle-delay 0) + ;; Display tildes in the fringe on empty lines + (global-vi-tilde-fringe-mode) + ;; Put a newline at the end of file if there isn't already one there + (setq-default require-final-newline t) ) ;; Do not write anything past this comment. This is where Emacs will |