Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2018
395
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. (package-initialize)
  2.  
  3. (require 'package)
  4. (add-to-list 'package-archives' ("melpa" . "http://melpa.org/packages/"))
  5. (package-initialize)
  6.  
  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. '(custom-enabled-themes (quote (dracula)))
  14. '(custom-safe-themes
  15. (quote
  16. ("ff7625ad8aa2615eae96d6b4469fcc7d3d20b2e1ebc63b761a349bebbb9d23cb" "d61fc0e6409f0c2a22e97162d7d151dee9e192a90fa623f8d6a071dbf49229c6" default)))
  17. '(frame-brackground-mode (quote dark)))
  18. (custom-set-faces
  19. ;; custom-set-faces was added by Custom.
  20. ;; If you edit it by hand, you could mess it up, so be careful.
  21. ;; Your init file should contain only one such instance.
  22. ;; If there is more than one, they won't work right.
  23. )
  24.  
  25.  
  26. (setq inhibit-startup-screen t)
  27. (menu-bar-mode 0)
  28. (tool-bar-mode 0)
  29. (setq-default cursor-type 'bar)
  30.  
  31.  
  32. (global-set-key (kbd "<C-up>") 'shrink-window)
  33. (global-set-key (kbd "<C-down>") 'enlarge-window)
  34. (global-set-key (kbd "<C-left>") 'shrink-window-horizontally)
  35. (global-set-key (kbd "<C-right>") 'enlarge-window-horizontally)
  36.  
  37. (add-to-list 'default-frame-alist '(font . "Source Code Pro Semibold 10"))
  38.  
  39. (neotree-show)
  40.  
  41. (add-to-list 'load-path "~/emacs.d/emmet-mode")
  42. (require 'emmet-mode)
  43.  
  44. (add-hook 'sgml-mode-hook 'emmet-mode)
  45. (add-hook 'css-mode-hook 'emmet-mode)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement