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.

136 lines
3.1 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. '(find-file-suppress-same-file-warnings
  26. t)
  27. '(hippie-expand-try-functions-list
  28. (quote
  29. (try-expand-dabbrev
  30. try-expand-dabbrev-all-buffers
  31. try-expand-dabbrev-from-kill
  32. try-complete-file-name-partially
  33. try-complete-file-name
  34. try-expand-all-abbrevs
  35. try-expand-list
  36. try-expand-line
  37. try-complete-lisp-symbol-partially
  38. try-complete-lisp-symbol)))
  39. '(ibuffer-formats
  40. (quote
  41. ((mark
  42. modified
  43. read-only
  44. locked
  45. " "
  46. (name 18 18 :left :elide)
  47. " "
  48. (size-h 9 -1 :right)
  49. " "
  50. (mode 16 16 :left :elide)
  51. " "
  52. filename-and-process)
  53. (mark
  54. " "
  55. (name 16 -1)
  56. " "
  57. filename))))
  58. '(inhibit-startup-screen t)
  59. '(menu-bar-mode nil)
  60. '(package-selected-packages
  61. (quote
  62. (autodisass-java-bytecode
  63. meghanada
  64. elmacro
  65. ace-window
  66. winum
  67. spaceline
  68. use-package
  69. kv
  70. lispy
  71. ibuffer-vc
  72. ag
  73. string-inflection
  74. tiny
  75. powershell
  76. diffview
  77. ivy-hydra
  78. php-mode
  79. swiper
  80. mode-line-bell
  81. htmlize
  82. cython-mode
  83. blacken
  84. dired-narrow
  85. lua-mode
  86. browse-kill-ring
  87. clipmon
  88. free-keys
  89. org-link-minor-mode
  90. js2-mode
  91. js2-refactor
  92. xref-js2
  93. python-django
  94. visual-regexp-steroids
  95. pcre2el
  96. vimrc-mode
  97. iedit
  98. transient
  99. magit
  100. dracula-theme
  101. flycheck
  102. elpy
  103. ein
  104. better-defaults
  105. ssh-config-mode
  106. yaml-mode
  107. apache-mode
  108. web-mode
  109. undo-tree)))
  110. '(reb-re-syntax (quote string))
  111. '(safe-local-variable-values
  112. (quote ((project-venv))))
  113. '(scroll-bar-mode nil)
  114. '(tool-bar-mode nil)
  115. '(tramp-use-ssh-controlmaster-options
  116. nil
  117. nil
  118. (tramp)))
  119. (custom-set-faces
  120. ;; custom-set-faces was added by Custom.
  121. ;; If you edit it by hand, you could mess it up, so be careful.
  122. ;; Your init file should contain only one such instance.
  123. ;; If there is more than one, they won't work right.
  124. '(default
  125. ((t
  126. (:family "Roboto Mono"
  127. :foundry "outline"
  128. :slant normal
  129. :weight normal
  130. :height 113
  131. :width normal))))
  132. '(line-number-current-line
  133. ((t
  134. (:foreground "yellow"
  135. :weight bold)))))
  136. (put 'upcase-region 'disabled nil)