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.

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