Advertisement
Guest User

Untitled

a guest
Oct 7th, 2015
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. (setq ns-right-alternate-modifier nil)
  2. (setq mac-function-modifier 'control)
  3. (add-to-list 'load-path "~/elisp")
  4. (show-paren-mode)
  5. (autoload 'js2-mode "js2-mode" nil t)
  6. (add-to-list 'auto-mode-alist '("\\.js$" . js2-mode))
  7.  
  8. (custom-set-variables
  9. ;; custom-set-variables was added by Custom.
  10. ;; If you edit it by hand, you could mess it up, so be careful.
  11. ;; Your init file should contain only one such instance.
  12. ;; If there is more than one, they won't work right.
  13. '(electric-indent-mode nil)
  14. '(global-whitespace-mode t)
  15. '(indent-tabs-mode nil)
  16. '(js2-basic-offset 2)
  17. '(js2-bounce-indent-p t)
  18. '(whitespace-line-column 100)
  19. '(whitespace-style (quote (face lines tabs trailing tab-mark))))
  20.  
  21. (custom-set-faces
  22. ;; custom-set-faces 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. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement