Advertisement
Guest User

.emacs

a guest
Mar 18th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.63 KB | None | 0 0
  1. ;; melpa
  2. (require 'package)
  3. (add-to-list 'package-archives
  4.              ; '("melpa" . "http://stable.melpa.org/packages/")
  5.              '("melpa" . "http://melpa.org/packages/")
  6.              t)
  7. (package-initialize)
  8.  
  9. ;; Custom
  10. (custom-set-variables
  11.  ;; custom-set-variables was added by Custom.
  12.  ;; If you edit it by hand, you could mess it up, so be careful.
  13.  ;; Your init file should contain only one such instance.
  14.  ;; If there is more than one, they won't work right.
  15.  '(package-selected-packages
  16.    (quote
  17.     (web-mode smart-tabs-mode puppet-mode projectile markdown-mode magit goto-last-change erlang csv-mode adoc-mode)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement