Last active
September 27, 2015 13:17
-
-
Save tuxity/1275453 to your computer and use it in GitHub Desktop.
Emacs 24.3 options
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Remove menu bar | |
(menu-bar-mode -1) | |
;; Line highlight | |
(global-hl-line-mode t) | |
(custom-set-faces '(highlight ((t (:weight bold))))) | |
;; Line number | |
(global-linum-mode t) | |
(setq linum-format "%d ") | |
;; Parenthesis matching | |
(show-paren-mode) | |
;; Trailing whitespace | |
(setq show-trailing-whitespace t) | |
;; Show cursor's column position | |
(setq column-number-mode t) | |
;; Stop making backup and auto save ! | |
(setq make-backup-files nil) | |
(setq auto-save-default nil) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment