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.

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