Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 1.40 KB | None | 0 0
  1. ;; MELPA Packages
  2.  
  3. (require 'package)
  4. (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/"))
  5.  
  6. (package-initialize)
  7.  
  8. ;; Reftex enabled
  9.  
  10. (require 'reftex)
  11.    
  12. (add-hook 'LaTeX-mode-hook 'turn-on-reftex)   ; with AUCTeX LaTeX mode
  13. (add-hook 'latex-mode-hook 'turn-on-reftex)   ; with Emacs latex mode
  14.  
  15. ;; CDLatex enabled for org files
  16.  
  17. (add-hook 'org-mode-hook 'turn-on-org-cdlatex)
  18.  
  19. ;;
  20.  
  21. (custom-set-variables
  22.  ;; custom-set-variables was added by Custom.
  23.  ;; If you edit it by hand, you could mess it up, so be careful.
  24.  ;; Your init file should contain only one such instance.
  25.  ;; If there is more than one, they won't work right.
  26.  '(custom-enabled-themes (quote (zenburn)))
  27.  '(custom-safe-themes
  28.    (quote
  29.     ("669e02142a56f63861288cc585bee81643ded48a19e36bfdf02b66d745bcc626" "a7051d761a713aaf5b893c90eaba27463c791cd75d7257d3a8e66b0c8c346e77" default)))
  30.  '(package-selected-packages
  31.    (quote
  32.     (org-ref pdf-tools zenburn-theme cdlatex atom-one-dark-theme auctex tablist)))
  33.  '(tetris-x-colors
  34.    [[229 192 123]
  35.     [97 175 239]
  36.     [209 154 102]
  37.     [224 108 117]
  38.     [152 195 121]
  39.     [198 120 221]
  40.     [86 182 194]]))
  41. (custom-set-faces
  42.  ;; custom-set-faces was added by Custom.
  43.  ;; If you edit it by hand, you could mess it up, so be careful.
  44.  ;; Your init file should contain only one such instance.
  45.  ;; If there is more than one, they won't work right.
  46.  )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement