Skip to content

Instantly share code, notes, and snippets.

@tuxity
Last active September 27, 2015 13:17
Show Gist options
  • Save tuxity/1275453 to your computer and use it in GitHub Desktop.
Save tuxity/1275453 to your computer and use it in GitHub Desktop.
Emacs 24.3 options
;; 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