Personal emacs config
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

132 lines
3.0 KiB

6 years ago
  1. (custom-set-variables
  2. ;; custom-set-variables was added by Custom.
  3. ;; If you edit it by hand, you could mess it up, so be careful.
  4. ;; Your init file should contain only one such instance.
  5. ;; If there is more than one, they won't work right.
  6. '(auto-save-file-name-transforms
  7. (quote
  8. ((".*" "~/.emacs.d/autosave/" t))))
  9. '(aw-dispatch-when-more-than 1)
  10. '(backup-directory-alist
  11. (quote
  12. ((".*" . "~/.emacs.d/backup"))))
  13. '(custom-enabled-themes
  14. (quote (dracula)))
  15. '(custom-safe-themes
  16. (quote
  17. ("35b0b0e531731e270708ddb342dc2e576a31fb298dcbc56a206596a43afac54f"
  18. "1e922202769ed113de72a203c85726f98b5c86523c55629f95489c083fe2472a"
  19. "274fa62b00d732d093fc3f120aca1b31a6bb484492f31081c1814a858e25c72e"
  20. default)))
  21. '(delete-by-moving-to-trash t)
  22. '(dired-listing-switches "-alh")
  23. '(elpy-eldoc-show-current-function
  24. nil)
  25. '(hippie-expand-try-functions-list
  26. (quote
  27. (try-expand-dabbrev
  28. try-expand-dabbrev-all-buffers
  29. try-expand-dabbrev-from-kill
  30. try-complete-file-name-partially
  31. try-complete-file-name
  32. try-expand-all-abbrevs
  33. try-expand-list
  34. try-expand-line
  35. try-complete-lisp-symbol-partially
  36. try-complete-lisp-symbol)))
  37. '(ibuffer-formats
  38. (quote
  39. ((mark
  40. modified
  41. read-only
  42. locked
  43. " "
  44. (name 18 18 :left :elide)
  45. " "
  46. (size-h 9 -1 :right)
  47. " "
  48. (mode 16 16 :left :elide)
  49. " "
  50. filename-and-process)
  51. (mark
  52. " "
  53. (name 16 -1)
  54. " "
  55. filename))))
  56. '(inhibit-startup-screen t)
  57. '(menu-bar-mode nil)
  58. '(package-selected-packages
  59. (quote
  60. (elmacro
  61. ace-window
  62. winum
  63. spaceline
  64. use-package
  65. kv
  66. lispy
  67. ibuffer-vc
  68. ag
  69. string-inflection
  70. tiny
  71. powershell
  72. diffview
  73. ivy-hydra
  74. php-mode
  75. swiper
  76. mode-line-bell
  77. htmlize
  78. cython-mode
  79. blacken
  80. dired-narrow
  81. lua-mode
  82. browse-kill-ring
  83. clipmon
  84. free-keys
  85. org-link-minor-mode
  86. js2-mode
  87. js2-refactor
  88. xref-js2
  89. python-django
  90. visual-regexp-steroids
  91. pcre2el
  92. vimrc-mode
  93. iedit
  94. transient
  95. magit
  96. dracula-theme
  97. flycheck
  98. elpy
  99. ein
  100. better-defaults
  101. ssh-config-mode
  102. yaml-mode
  103. apache-mode
  104. web-mode
  105. undo-tree)))
  106. '(reb-re-syntax (quote string))
  107. '(safe-local-variable-values
  108. (quote ((project-venv))))
  109. '(scroll-bar-mode nil)
  110. '(tool-bar-mode nil)
  111. '(tramp-use-ssh-controlmaster-options
  112. nil
  113. nil
  114. (tramp)))
  115. (custom-set-faces
  116. ;; custom-set-faces was added by Custom.
  117. ;; If you edit it by hand, you could mess it up, so be careful.
  118. ;; Your init file should contain only one such instance.
  119. ;; If there is more than one, they won't work right.
  120. '(default
  121. ((t
  122. (:family "Roboto Mono"
  123. :foundry "outline"
  124. :slant normal
  125. :weight normal
  126. :height 113
  127. :width normal))))
  128. '(line-number-current-line
  129. ((t
  130. (:foreground "yellow"
  131. :weight bold)))))
  132. (put 'upcase-region 'disabled nil)