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.

138 lines
3.1 KiB

6 years ago
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. (realgud
  63. format-all
  64. autodisass-java-bytecode
  65. meghanada
  66. elmacro
  67. ace-window
  68. winum
  69. spaceline
  70. use-package
  71. kv
  72. lispy
  73. ibuffer-vc
  74. ag
  75. string-inflection
  76. tiny
  77. powershell
  78. diffview
  79. ivy-hydra
  80. php-mode
  81. swiper
  82. mode-line-bell
  83. htmlize
  84. cython-mode
  85. dired-narrow
  86. lua-mode
  87. browse-kill-ring
  88. clipmon
  89. free-keys
  90. org-link-minor-mode
  91. js2-mode
  92. js2-refactor
  93. xref-js2
  94. python-django
  95. visual-regexp-steroids
  96. pcre2el
  97. vimrc-mode
  98. iedit
  99. transient
  100. magit
  101. dracula-theme
  102. flycheck
  103. elpy
  104. ein
  105. better-defaults
  106. ssh-config-mode
  107. yaml-mode
  108. apache-mode
  109. web-mode
  110. undo-tree)))
  111. '(python-check-command "flake8")
  112. '(reb-re-syntax (quote string))
  113. '(safe-local-variable-values
  114. (quote ((project-venv))))
  115. '(scroll-bar-mode nil)
  116. '(tool-bar-mode nil)
  117. '(tramp-use-ssh-controlmaster-options
  118. nil
  119. nil
  120. (tramp)))
  121. (custom-set-faces
  122. ;; custom-set-faces was added by Custom.
  123. ;; If you edit it by hand, you could mess it up, so be careful.
  124. ;; Your init file should contain only one such instance.
  125. ;; If there is more than one, they won't work right.
  126. '(default
  127. ((t
  128. (:family "Roboto Mono"
  129. :foundry "outline"
  130. :slant normal
  131. :weight normal
  132. :height 113
  133. :width normal))))
  134. '(line-number-current-line
  135. ((t
  136. (:foreground "yellow"
  137. :weight bold)))))
  138. (put 'upcase-region 'disabled nil)