about summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorCase Duckworth2024-07-06 21:45:31 -0500
committerCase Duckworth2024-07-06 21:45:31 -0500
commitb99be3cc901bad25e988f2cbaa4192ce6b858afd (patch)
treefb8574a33c3f556d1d99e2bef83fae3a20abd48d /emacs
parentEmacs! (diff)
downloaddots-b99be3cc901bad25e988f2cbaa4192ce6b858afd.tar.gz
dots-b99be3cc901bad25e988f2cbaa4192ce6b858afd.zip
Update for like, exwm stuff
Diffstat (limited to 'emacs')
-rw-r--r--emacs9
1 files changed, 5 insertions, 4 deletions
diff --git a/emacs b/emacs index 5066268..26e5bbb 100644 --- a/emacs +++ b/emacs
@@ -19,7 +19,7 @@
19 (set-file-modes user-private-file #o600)) 19 (set-file-modes user-private-file #o600))
20(load user-private-file :no-error) 20(load user-private-file :no-error)
21 21
22(load-theme 'brianna :no-confirm) ; see ~/.emacs.d/brianna-theme.el 22(load-theme 'bob :no-confirm) ; see ~/.emacs.d/bob-theme.el
23(add-hook 'after-init-hook #'setup-faces) 23(add-hook 'after-init-hook #'setup-faces)
24 24
25(define-advice startup-echo-area-message (:override ()) 25(define-advice startup-echo-area-message (:override ())
@@ -495,8 +495,8 @@
495 (locate-user-emacs-file "early-init.el")) 495 (locate-user-emacs-file "early-init.el"))
496 "c" (find-user-file custom custom-file) 496 "c" (find-user-file custom custom-file)
497 "p" (find-user-file private) 497 "p" (find-user-file private)
498 "t" (find-user-file brianna 498 "t" (find-user-file bob
499 (locate-user-emacs-file "brianna-theme.el")) 499 (locate-user-emacs-file "bob-theme.el"))
500 "x" (find-user-file exwm 500 "x" (find-user-file exwm
501 (expand-file-name "~/.exwm")) 501 (expand-file-name "~/.exwm"))
502 "s" #'scratch-buffer)) 502 "s" #'scratch-buffer))
@@ -641,7 +641,7 @@
641 (^turn-off 'display-fill-column-indicator-mode)) 641 (^turn-off 'display-fill-column-indicator-mode))
642(add-hook 'prog-mode-hook #'auto-fill-mode) 642(add-hook 'prog-mode-hook #'auto-fill-mode)
643(add-hook 'prog-mode-hook #'electric-pair-local-mode) 643(add-hook 'prog-mode-hook #'electric-pair-local-mode)
644(add-to-list 'warning-suppress-types 'comp) 644(setopt warning-suppress-types '(comp))
645(context-menu-mode) 645(context-menu-mode)
646(delete-selection-mode) 646(delete-selection-mode)
647(global-goto-address-mode) 647(global-goto-address-mode)
@@ -767,6 +767,7 @@
767(setopt eshell-history-size nil) 767(setopt eshell-history-size nil)
768 768
769(keymap-global-set "C-z" #'popup-eshell) 769(keymap-global-set "C-z" #'popup-eshell)
770(keymap-global-set "C-c C-z" #'popup-eshell)
770(add-hook 'eshell-first-time-mode-hook 771(add-hook 'eshell-first-time-mode-hook
771 (defun @eshell-once () 772 (defun @eshell-once ()
772 (keymap-set eshell-mode-map "C-z" #'quit-window))) 773 (keymap-set eshell-mode-map "C-z" #'quit-window)))