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.

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