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.

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