Advertisement
Guest User

Untitled

a guest
Oct 4th, 2015
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. ;;load autumn-light-theme
  2. (add-to-list 'custom-theme-load-path "/home/matthias/Emacs/Themes")
  3. (load-theme 'seti)
  4.  
  5. ;;python interpreter
  6. (setq py-python-command "/usr/local/bin/python")
  7.  
  8. ;;Do not show welcome screen
  9. (setq inhibit-startup-message t)
  10.  
  11. ;;load Julia screen
  12. (add-to-list 'load-path "/home/matthias/Emacs/ESS/lisp")
  13. (require 'ess-site)
  14.  
  15. ;;auto-revert
  16. (global-auto-revert-mode 1)
  17. (auto-image-file-mode 1)
  18.  
  19. ;;show matching brackets
  20. (show-paren-mode 1)
  21.  
  22.  
  23. ;;compile on M-C
  24. (global-set-key "\M-c" 'compile)
  25.  
  26. (when (>= emacs-major-version 24)
  27. (require 'package)
  28. (add-to-list
  29. 'package-archives
  30. '("melpa" . "http://melpa.org/packages/")
  31. t)
  32. (package-initialize))
  33.  
  34. ;; python auto-complete
  35. (add-hook 'python-mode-hook 'jedi:setup)
  36. (setq jedi:complete-on-dot t)
  37.  
  38. ;; ipython compile
  39. (setq compile-command "ipython main.py")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement