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.

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