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.

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