Skip to content

Instantly share code, notes, and snippets.

@mxwell
Created July 27, 2012 12:34
Show Gist options
  • Save mxwell/3187718 to your computer and use it in GitHub Desktop.
Save mxwell/3187718 to your computer and use it in GitHub Desktop.
Emacs configuration file
; dance in Linux Kernel style
(setq c-default-style "linux")
; get off scroll bar
(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))
; get off tool bar
(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))
; get off menu bar
(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment