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.

131 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. '(delete-by-moving-to-trash t)
  14. '(dired-listing-switches "-alh")
  15. '(elpy-eldoc-show-current-function
  16. nil)
  17. '(find-file-suppress-same-file-warnings
  18. t)
  19. '(hippie-expand-try-functions-list
  20. (quote
  21. (try-expand-dabbrev
  22. try-expand-dabbrev-all-buffers
  23. try-expand-dabbrev-from-kill
  24. try-complete-file-name-partially
  25. try-complete-file-name
  26. try-expand-all-abbrevs
  27. try-expand-list
  28. try-expand-line
  29. try-complete-lisp-symbol-partially
  30. try-complete-lisp-symbol)))
  31. '(ibuffer-formats
  32. (quote
  33. ((mark
  34. modified
  35. read-only
  36. locked
  37. " "
  38. (name 18 18 :left :elide)
  39. " "
  40. (size-h 9 -1 :right)
  41. " "
  42. (mode 16 16 :left :elide)
  43. " "
  44. filename-and-process)
  45. (mark
  46. " "
  47. (name 16 -1)
  48. " "
  49. filename))))
  50. '(inhibit-startup-screen t)
  51. '(menu-bar-mode nil)
  52. '(org-imenu-depth 5)
  53. '(package-selected-packages
  54. (quote
  55. (realgud
  56. format-all
  57. autodisass-java-bytecode
  58. meghanada
  59. elmacro
  60. ace-window
  61. winum
  62. spaceline
  63. use-package
  64. kv
  65. lispy
  66. ibuffer-vc
  67. ag
  68. string-inflection
  69. tiny
  70. powershell
  71. diffview
  72. ivy-hydra
  73. php-mode
  74. swiper
  75. mode-line-bell
  76. htmlize
  77. cython-mode
  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. '(python-check-command "flake8")
  105. '(reb-re-syntax (quote string))
  106. '(safe-local-variable-values
  107. (quote ((project-venv))))
  108. '(scroll-bar-mode nil)
  109. '(tool-bar-mode nil)
  110. '(tramp-use-ssh-controlmaster-options
  111. nil
  112. nil
  113. (tramp)))
  114. (custom-set-faces
  115. ;; custom-set-faces was added by Custom.
  116. ;; If you edit it by hand, you could mess it up, so be careful.
  117. ;; Your init file should contain only one such instance.
  118. ;; If there is more than one, they won't work right.
  119. '(default
  120. ((t
  121. (:family "Roboto Mono"
  122. :foundry "outline"
  123. :slant normal
  124. :weight normal
  125. :height 113
  126. :width normal))))
  127. '(line-number-current-line
  128. ((t
  129. (:foreground "yellow"
  130. :weight bold)))))
  131. (put 'upcase-region 'disabled nil)