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.

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