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.

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