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.

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