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.

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