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.

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