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.

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