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.

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