Skip to content

Instantly share code, notes, and snippets.

@porterjamesj
Created February 6, 2014 01:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save porterjamesj/8836658 to your computer and use it in GitHub Desktop.
Save porterjamesj/8836658 to your computer and use it in GitHub Desktop.
the minimal configuration I need to be able to use emacs effectively
(setq inhibit-startup-message t)
(global-set-key (kbd "M-n") 'forward-paragraph)
(global-set-key (kbd "M-p") 'backward-paragraph)
(setq backup-inhibited t)
(setq auto-save-default nil)
(setq create-lockfiles nil)
(defalias 'yes-or-no-p 'y-or-n-p)
(setq line-number-mode t)
(setq column-number-mode t)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment