Skip to content

Instantly share code, notes, and snippets.

@mittenchops
Created April 24, 2014 14:01
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 mittenchops/11255681 to your computer and use it in GitHub Desktop.
Save mittenchops/11255681 to your computer and use it in GitHub Desktop.
emacs packages
(when (>= emacs-major-version 24)
(require 'package)
(package-initialize)
(setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/")
("marmalade" . "http://marmalade-repo.org/packages/")
("melpa" . "http://melpa.milkbox.net/packages/")
)
)
)
(add-to-list 'load-path "~/.emacs.d/el-get/el-get")
(unless (require 'el-get nil 'noerror)
(with-current-buffer
(url-retrieve-synchronously
"https://raw.github.com/dimitri/el-get/master/el-get-install.el")
(let (el-get-master-branch)
(goto-char (point-max))
(eval-print-last-sexp))))
(el-get 'sync)
@mittenchops
Copy link
Author

(global-set-key (kbd "C-") 'next-buffer)
(global-set-key (kbd "C-") 'previous-buffer)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment