spacemacs/config/config-editing.el

13 lines
494 B
EmacsLisp
Raw Normal View History

2013-01-04 20:42:56 +00:00
;; Global ---------------------------------------------------------------------
;; 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)
2013-01-04 20:42:56 +00:00
;; Text -----------------------------------------------------------------------
(setq longlines-show-hard-newlines t)