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.

176 lines
4.0 KiB

6 years ago
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. '(browse-kill-ring-display-duplicates
  14. nil)
  15. '(company-show-numbers t)
  16. '(delete-by-moving-to-trash t)
  17. '(dired-listing-switches
  18. "-alhv")
  19. '(elpy-eldoc-show-current-function
  20. nil)
  21. '(elpy-rpc-timeout 4)
  22. '(explicit-shell-file-name
  23. "/bin/bash")
  24. '(find-file-suppress-same-file-warnings
  25. t)
  26. '(hippie-expand-try-functions-list
  27. (quote
  28. (try-expand-dabbrev
  29. try-expand-dabbrev-all-buffers
  30. try-expand-dabbrev-from-kill
  31. try-complete-file-name-partially
  32. try-complete-file-name
  33. try-expand-all-abbrevs
  34. try-expand-list
  35. try-expand-line
  36. try-complete-lisp-symbol-partially
  37. try-complete-lisp-symbol)))
  38. '(ibuffer-expert t)
  39. '(ibuffer-formats
  40. (quote
  41. ((mark
  42. modified
  43. read-only
  44. locked
  45. " "
  46. (name 18 18 :left :elide)
  47. " "
  48. (size-h 9 -1 :right)
  49. " "
  50. (mode 16 16 :left :elide)
  51. " "
  52. filename-and-process)
  53. (mark
  54. " "
  55. (name 16 -1)
  56. " "
  57. filename))))
  58. '(ibuffer-show-empty-filter-groups
  59. nil)
  60. '(inhibit-startup-screen t)
  61. '(kill-ring-max 500)
  62. '(magit-status-sections-hook
  63. (quote
  64. (magit-insert-status-headers
  65. magit-insert-merge-log
  66. magit-insert-rebase-sequence
  67. magit-insert-am-sequence
  68. magit-insert-sequencer-sequence
  69. magit-insert-bisect-output
  70. magit-insert-bisect-rest
  71. magit-insert-bisect-log
  72. magit-insert-ignored-files
  73. magit-insert-untracked-files
  74. magit-insert-unstaged-changes
  75. magit-insert-staged-changes
  76. magit-insert-stashes
  77. magit-insert-unpushed-to-pushremote
  78. magit-insert-unpushed-to-upstream-or-recent
  79. magit-insert-unpulled-from-pushremote
  80. magit-insert-unpulled-from-upstream)))
  81. '(menu-bar-mode nil)
  82. '(org-goto-interface
  83. (quote
  84. outline-path-completionp))
  85. '(org-imenu-depth 5)
  86. '(org-outline-path-complete-in-steps
  87. nil)
  88. '(package-selected-packages
  89. (quote
  90. (ibuffer-tramp
  91. dockerfile-mode
  92. docker
  93. docker-compose-mode
  94. better-shell
  95. ahk-mode
  96. realgud
  97. format-all
  98. autodisass-java-bytecode
  99. meghanada
  100. elmacro
  101. ace-window
  102. winum
  103. spaceline
  104. use-package
  105. kv
  106. lispy
  107. ibuffer-vc
  108. ag
  109. string-inflection
  110. tiny
  111. powershell
  112. diffview
  113. ivy-hydra
  114. php-mode
  115. swiper
  116. mode-line-bell
  117. htmlize
  118. cython-mode
  119. dired-narrow
  120. lua-mode
  121. browse-kill-ring
  122. clipmon
  123. free-keys
  124. org-link-minor-mode
  125. js2-mode
  126. js2-refactor
  127. xref-js2
  128. python-django
  129. visual-regexp-steroids
  130. pcre2el
  131. vimrc-mode
  132. iedit
  133. transient
  134. magit
  135. dracula-theme
  136. flycheck
  137. elpy
  138. ein
  139. better-defaults
  140. ssh-config-mode
  141. yaml-mode
  142. apache-mode
  143. web-mode
  144. undo-tree)))
  145. '(python-check-command "flake8")
  146. '(reb-re-syntax (quote string))
  147. '(safe-local-variable-values
  148. (quote ((project-venv))))
  149. '(scroll-bar-mode nil)
  150. '(tool-bar-mode nil)
  151. '(tramp-use-ssh-controlmaster-options
  152. nil
  153. nil
  154. (tramp)))
  155. (custom-set-faces
  156. ;; custom-set-faces was added by Custom.
  157. ;; If you edit it by hand, you could mess it up, so be careful.
  158. ;; Your init file should contain only one such instance.
  159. ;; If there is more than one, they won't work right.
  160. '(default
  161. ((t
  162. (:family "Roboto Mono"
  163. :foundry "outline"
  164. :slant normal
  165. :weight normal
  166. :height 113
  167. :width normal))))
  168. '(company-tooltip-search
  169. ((t
  170. (:background "#f1fa8c"
  171. :foreground "dark gray"))))
  172. '(line-number-current-line
  173. ((t
  174. (:foreground "yellow"
  175. :weight bold)))))
  176. (put 'upcase-region 'disabled nil)