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.

150 lines
3.4 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. '(magit-status-sections-hook
  52. (quote
  53. (magit-insert-status-headers
  54. magit-insert-merge-log
  55. magit-insert-rebase-sequence
  56. magit-insert-am-sequence
  57. magit-insert-sequencer-sequence
  58. magit-insert-bisect-output
  59. magit-insert-bisect-rest
  60. magit-insert-bisect-log
  61. magit-insert-ignored-files
  62. magit-insert-untracked-files
  63. magit-insert-unstaged-changes
  64. magit-insert-staged-changes
  65. magit-insert-stashes
  66. magit-insert-unpushed-to-pushremote
  67. magit-insert-unpushed-to-upstream-or-recent
  68. magit-insert-unpulled-from-pushremote
  69. magit-insert-unpulled-from-upstream)))
  70. '(menu-bar-mode nil)
  71. '(org-imenu-depth 5)
  72. '(package-selected-packages
  73. (quote
  74. (realgud
  75. format-all
  76. autodisass-java-bytecode
  77. meghanada
  78. elmacro
  79. ace-window
  80. winum
  81. spaceline
  82. use-package
  83. kv
  84. lispy
  85. ibuffer-vc
  86. ag
  87. string-inflection
  88. tiny
  89. powershell
  90. diffview
  91. ivy-hydra
  92. php-mode
  93. swiper
  94. mode-line-bell
  95. htmlize
  96. cython-mode
  97. dired-narrow
  98. lua-mode
  99. browse-kill-ring
  100. clipmon
  101. free-keys
  102. org-link-minor-mode
  103. js2-mode
  104. js2-refactor
  105. xref-js2
  106. python-django
  107. visual-regexp-steroids
  108. pcre2el
  109. vimrc-mode
  110. iedit
  111. transient
  112. magit
  113. dracula-theme
  114. flycheck
  115. elpy
  116. ein
  117. better-defaults
  118. ssh-config-mode
  119. yaml-mode
  120. apache-mode
  121. web-mode
  122. undo-tree)))
  123. '(python-check-command "flake8")
  124. '(reb-re-syntax (quote string))
  125. '(safe-local-variable-values
  126. (quote ((project-venv))))
  127. '(scroll-bar-mode nil)
  128. '(tool-bar-mode nil)
  129. '(tramp-use-ssh-controlmaster-options
  130. nil
  131. nil
  132. (tramp)))
  133. (custom-set-faces
  134. ;; custom-set-faces was added by Custom.
  135. ;; If you edit it by hand, you could mess it up, so be careful.
  136. ;; Your init file should contain only one such instance.
  137. ;; If there is more than one, they won't work right.
  138. '(default
  139. ((t
  140. (:family "Roboto Mono"
  141. :foundry "outline"
  142. :slant normal
  143. :weight normal
  144. :height 113
  145. :width normal))))
  146. '(line-number-current-line
  147. ((t
  148. (:foreground "yellow"
  149. :weight bold)))))
  150. (put 'upcase-region 'disabled nil)