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.

178 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-export-with-sub-superscripts
  83. (quote {}))
  84. '(org-goto-interface
  85. (quote
  86. outline-path-completionp))
  87. '(org-imenu-depth 5)
  88. '(org-outline-path-complete-in-steps
  89. nil)
  90. '(package-selected-packages
  91. (quote
  92. (counsel
  93. ibuffer-tramp
  94. dockerfile-mode
  95. docker
  96. docker-compose-mode
  97. better-shell
  98. ahk-mode
  99. realgud
  100. format-all
  101. autodisass-java-bytecode
  102. meghanada
  103. elmacro
  104. ace-window
  105. winum
  106. spaceline
  107. use-package
  108. kv
  109. lispy
  110. ibuffer-vc
  111. ag
  112. string-inflection
  113. tiny
  114. powershell
  115. diffview
  116. ivy-hydra
  117. php-mode
  118. swiper
  119. mode-line-bell
  120. htmlize
  121. cython-mode
  122. dired-narrow
  123. lua-mode
  124. browse-kill-ring
  125. clipmon
  126. free-keys
  127. js2-mode
  128. js2-refactor
  129. xref-js2
  130. python-django
  131. visual-regexp-steroids
  132. pcre2el
  133. vimrc-mode
  134. iedit
  135. transient
  136. magit
  137. dracula-theme
  138. flycheck
  139. elpy
  140. ein
  141. better-defaults
  142. ssh-config-mode
  143. yaml-mode
  144. apache-mode
  145. web-mode
  146. undo-tree)))
  147. '(python-check-command "flake8")
  148. '(reb-re-syntax (quote string))
  149. '(safe-local-variable-values
  150. (quote ((project-venv))))
  151. '(scroll-bar-mode nil)
  152. '(tool-bar-mode nil)
  153. '(tramp-use-ssh-controlmaster-options
  154. nil
  155. nil
  156. (tramp)))
  157. (custom-set-faces
  158. ;; custom-set-faces was added by Custom.
  159. ;; If you edit it by hand, you could mess it up, so be careful.
  160. ;; Your init file should contain only one such instance.
  161. ;; If there is more than one, they won't work right.
  162. '(default
  163. ((t
  164. (:family "Roboto Mono"
  165. :foundry "outline"
  166. :slant normal
  167. :weight normal
  168. :height 113
  169. :width normal))))
  170. '(company-tooltip-search
  171. ((t
  172. (:background "#f1fa8c"
  173. :foreground "dark gray"))))
  174. '(line-number-current-line
  175. ((t
  176. (:foreground "yellow"
  177. :weight bold)))))
  178. (put 'upcase-region 'disabled nil)