spacemacs/config/config-editing.el
2013-01-03 01:53:00 -05:00

13 lines
387 B
EmacsLisp

;; font size
(set-face-attribute 'default nil :height 110)
;; whitespace-mode
(setq-default show-trailing-whitespace nil)
;; When point is on paranthesis, highlight the matching one
(show-paren-mode t)
;; use only spaces and no tabs
(setq-default indent-tabs-mode nil)
(setq default-tab-width 2)
;; highlight current line
(global-hl-line-mode t)
(set-face-background 'hl-line "#073642")