aboutsummaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2015-10-05 16:11:20 -0500
committerJakob Odersky <jodersky@gmail.com>2015-10-05 16:11:20 -0500
commitd48f447433375f081ba92c81339d3f71a063e959 (patch)
tree59b3aa83ed840e90c3ba97340c9f2a93d2394608 /home
parent4dbbb0142ec7ebbcd8208af08eb61cb70496e94d (diff)
downloaddotfiles-d48f447433375f081ba92c81339d3f71a063e959.tar.gz
dotfiles-d48f447433375f081ba92c81339d3f71a063e959.tar.bz2
dotfiles-d48f447433375f081ba92c81339d3f71a063e959.zip
emacs updates
Diffstat (limited to 'home')
-rw-r--r--home/.emacs.d/init.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/home/.emacs.d/init.el b/home/.emacs.d/init.el
index ca707ca..18eca20 100644
--- a/home/.emacs.d/init.el
+++ b/home/.emacs.d/init.el
@@ -12,6 +12,7 @@
;; disable backups, autosave and lockfiles (use scm instead)
(setq make-backup-files nil)
+(setq backup-inhibited t)
(setq auto-save-default nil)
(setq create-lockfiles nil)
(global-auto-revert-mode t)
@@ -25,5 +26,14 @@
;; default window size
(when window-system (set-frame-size (selected-frame) 160 60))
+;; Highlight corresponding parentheses when cursor is on one
+(show-paren-mode t)
+
+;; Highlight tabulations
+(setq-default highlight-tabs t)
+
+;; Show trailing white spaces
+(setq-default show-trailing-whitespace t)
+
;;; Other configuration
(mapc 'load (file-expand-wildcards "~/.emacs.d/config/*.el"))