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.

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