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.

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