.emacs-all 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. ;;; PACKAGES
  2. ;; Bootstrap Straight Package Manager
  3. (defvar bootstrap-version)
  4. (let ((bootstrap-file
  5. (expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory))
  6. (bootstrap-version 5))
  7. (unless (file-exists-p bootstrap-file)
  8. (with-current-buffer
  9. (url-retrieve-synchronously
  10. "https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
  11. 'silent 'inhibit-cookies)
  12. (goto-char (point-max))
  13. (eval-print-last-sexp)))
  14. (load bootstrap-file nil 'nomessage))
  15. ;; packages to install and load
  16. (straight-use-package 'auto-complete)
  17. (straight-use-package '(nano-theme :type git :host github
  18. :repo "rougier/nano-theme"))
  19. (straight-use-package
  20. '(slime-company :type git :host github :repo "anwyn/slime-company"))
  21. (straight-use-package 'sublimity)
  22. (straight-use-package 'dashboard)
  23. (straight-use-package 'all-the-icons)
  24. (straight-use-package 'neotree)
  25. (straight-use-package 'rust-mode)
  26. (straight-use-package 'powerline)
  27. (straight-use-package 'markdown-mode)
  28. (straight-use-package 'moe-theme)
  29. (straight-use-package 'ample-theme)
  30. (straight-use-package 'slime)
  31. (straight-use-package 'ac-slime)
  32. (straight-use-package 'evil)
  33. (straight-use-package 'dimmer)
  34. (straight-use-package 'magit)
  35. (straight-use-package 'diff-hl)
  36. (straight-use-package 'powerline-evil)
  37. (straight-use-package 'rainbow-delimiters)
  38. (straight-use-package 'focus)
  39. (straight-use-package 'solarized-theme)
  40. (straight-use-package 'windresize)
  41. (straight-use-package 'yasnippet)
  42. (require 'yasnippet)
  43. ;; Configure focus
  44. (require 'focus)
  45. (add-to-list 'focus-mode-to-thing '(lisp-mode . paragraph))
  46. ;; rainbow delims
  47. (require 'rainbow-delimiters)
  48. (add-hook 'prog-mode-hook #'rainbow-delimiters-mode)
  49. ;; Git stuff
  50. (require 'magit)
  51. (require 'diff-hl)
  52. ;; Just enable diff-hl per buffer,
  53. ;; it seems expensive
  54. ;; (global-diff-hl-mode)
  55. (add-hook 'magit-pre-refresh-hook 'diff-hl-magit-pre-refresh)
  56. (add-hook 'magit-post-refresh-hook 'diff-hl-magit-post-refresh)
  57. (diff-hl-margin-mode t)
  58. (require 'dimmer)
  59. (setq dimmer-fraction 0.4)
  60. ;; always enable ido mode
  61. (require 'ido)
  62. (ido-mode t)
  63. (require 'evil)
  64. (evil-mode 1)
  65. ;; Enable tab behavior like vi
  66. (straight-use-package '(evil-tabs :type git :host github
  67. :repo "krisajenkins/evil-tabs"))
  68. (require 'evil-tabs)
  69. (global-evil-tabs-mode t)
  70. (require 'auto-complete)
  71. (global-auto-complete-mode t)
  72. (require 'slime)
  73. (require 'ac-slime)
  74. (slime-setup '(slime-fancy ac-slime))
  75. (add-hook 'slime-mode-hook 'set-up-slime-ac)
  76. (add-hook 'slime-repl-mode-hook 'set-up-slime-ac)
  77. (eval-after-load "auto-complete"
  78. '(add-to-list 'ac-modes 'slime-repl-mode))
  79. (require 'markdown-mode)
  80. (require 'powerline)
  81. ;;(powerline-default-theme)
  82. ;; Better powerline support for evil mode
  83. (require 'powerline-evil)
  84. (powerline-evil-vim-theme)
  85. (require 'neotree)
  86. (global-set-key [f8] 'neotree-toggle)
  87. (require 'dashboard)
  88. (dashboard-setup-startup-hook)
  89. (require 'all-the-icons)
  90. (require 'sublimity)
  91. (require 'sublimity-scroll)
  92. (require 'sublimity-map) ;; experimental
  93. (require 'sublimity-attractive)
  94. (setq sublimity-scroll-weight 10
  95. sublimity-scroll-drift-length 5)
  96. (setq sublimity-map-size 30)
  97. (setq sublimity-map-fraction 0.3)
  98. (setq sublimity-map-text-scale -9)
  99. (sublimity-map-set-delay 0.1)
  100. (setq sublimity-attractive-centering-width nil)
  101. (setq backup-directory-alist
  102. `((".*" . ,temporary-file-directory)))
  103. (setq auto-save-file-name-transforms
  104. `((".*" ,temporary-file-directory t)))
  105. ;;; Generic options for all OSs
  106. ; Smooth mouse scroll a bit
  107. (setq mouse-wheel-scroll-amount '(1 ((shift) . 1) ((control) . nil)))
  108. (setq mouse-wheel-progressive-speed nil)
  109. ;; normal home/end behavior
  110. (global-set-key (kbd "<home>") 'beginning-of-line)
  111. (global-set-key (kbd "<end>") 'end-of-line)
  112. ;; Custom functions
  113. (defun reload-dot-emacs ()
  114. (interactive)
  115. (load-file (file-truename "~/.emacs")))
  116. (defun sol-dk ()
  117. (interactive)
  118. (load-theme 'solarized-dark))
  119. (defun sol-l ()
  120. (interactive)
  121. (load-theme 'solarized-light))
  122. ;; Keybinds/macros
  123. (global-set-key (kbd "C-c e") 'diff-hl-mode)
  124. (global-set-key (kbd "C-c d") 'dimmer-mode)
  125. (global-set-key (kbd "C-c s") 'sublimity-mode)
  126. (global-set-key (kbd "C-c f") 'focus-mode)
  127. (global-set-key (kbd "C-c r") 'reload-dot-emacs)
  128. (global-set-key (kbd "C-c l") 'display-line-numbers-mode)
  129. (global-set-key (kbd "C-c w") 'windresize)
  130. (global-set-key (kbd "C-c t") 'sol-dk)
  131. (global-set-key (kbd "C-c g") 'sol-l)
  132. (global-set-key (kbd "C-c y") 'evil-mode) ; Quick toggle evil-mode for slime err
  133. (global-set-key (kbd "C-c h") 'tramp-cleanup-connection)
  134. (global-set-key (kbd "C-c C-.") '(lambda ()
  135. (interactive)
  136. (switch-to-buffer "*Messages*")))
  137. ;;; Can probably be replaced with
  138. ;;; a yasnippet
  139. (fset 'date-to-point
  140. (kmacro-lambda-form [?\C-u ?\M-! ?d ?a ?t ?e return] 0 "%d"))
  141. ;;; Erc config
  142. (setq erc-nick "speskk")
  143. (if (file-exists-p "~/.emacs.d/.erc-auth.el")
  144. (progn
  145. (load "~/.emacs.d/.erc-auth.el")
  146. (defun connect-to-libera-erc () (interactive)
  147. (erc :server "irc.libera.chat" :port "6667"
  148. :nick "speskk" :password *libera-chat*))))
  149. ;; Allow M-up / M-down behavior to switch windows
  150. (windmove-default-keybindings 'meta)
  151. (display-time-mode t)
  152. ;; Perl Config
  153. (setq
  154. perl-indent-parens-as-block 0
  155. perl-indent-level 8)
  156. ;; Set to make mouse focus window
  157. (setq mouse-autoselect-window t
  158. focus-follows-mouse t)
  159. ;; Custom eshell prompt
  160. (setq eshell-prompt-function
  161. (lambda nil
  162. " λ > "))
  163. (setq eshell-prompt-regexp "^ λ > ")
  164. (set-language-environment "UTF-8")
  165. ;; Simple rclone cli wrapper
  166. (load "~/Repos/dotfiles/emacs/elisp/rclone.el")
  167. (global-set-key (kbd "C-c o") 'rclone-copy-buffer)
  168. ;; Load for macOS
  169. ;;; Slime/etc
  170. (if (eq system-type 'darwin)
  171. (progn
  172. ;; Configure yasnippet
  173. (setq yas-snippet-dirs
  174. '("~/Repos/dotfiles/emacs/yasnippets/"))
  175. (yas-global-mode 1)
  176. (setq inferior-lisp-program "/opt/homebrew/bin/sbcl")
  177. (load (expand-file-name "~/.local/opt/quicklisp/slime-helper.el"))
  178. ;; Font/themes/etc
  179. (load "/Users/swatson/Repos/dotfiles/emacs/mac-load/customs.el")
  180. ;; Easily set cua mode on/off so that I don't have to
  181. ;; use shift+insert for paste on mac
  182. (global-set-key (kbd "C-c c") 'cua-mode)
  183. ;; Graphic Display
  184. (if (display-graphic-p)
  185. (progn
  186. (load-theme 'solarized-dark t)))))
  187. ;; Load for Windows10
  188. (if (eq system-type 'windows-nt)
  189. (progn
  190. ;; Configure yasnippet
  191. (setq yas-snippet-dirs
  192. '("C:/Users/watsonsi/Documents/Github/dotfiles/emacs/yasnippets/"))
  193. (yas-global-mode 1)
  194. (load "C:/Users/watsonsi/Documents/GitHub/dotfiles/emacs/windows-load/customs.el")
  195. (setq visible-bell 1)
  196. (load-theme 'solarized-light t)))
  197. ;; Load for GUI Linux
  198. (if (eq system-type 'gnu/linux)
  199. (if (display-graphic-p)
  200. (progn
  201. (setq yas-snippet-dirs
  202. '("~/Repos/dotfiles/emacs/yasnippets/"))
  203. (yas-global-mode 1)
  204. (straight-use-package 'exwm)
  205. (require 'exwm)
  206. ;(require 'exwm-systemtray)
  207. ;(exwm-systemtray-enable)
  208. (load "~/Repos/dotfiles/emacs/linux-load/exwm-config.el")
  209. (require 'exwm-config-spw)
  210. (exwm-config-spw)
  211. (setq visible-bell 1)
  212. (load "~/Repos/dotfiles/emacs/linux-load/customs.el")
  213. (load-theme 'solarized-light t))))
  214. ;; Load for Term
  215. (unless (display-graphic-p)
  216. (xterm-mouse-mode t))