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.

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