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.

126 lines
2.7 KiB

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