projects
/
~bandali
/
configs
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
xdg: export various XDG_*_DIR variables
[~bandali/configs]
/
.emacs.d
/
init.el
diff --git
a/.emacs.d/init.el
b/.emacs.d/init.el
index
539b045
..
60b8215
100644
(file)
--- a/
.emacs.d/init.el
+++ b/
.emacs.d/init.el
@@
-122,7
+122,7
@@
\f
;;; Initial setup
\f
;;; Initial setup
-(defvar b/exwm-p (string= (system-name) "
jirud
")
+(defvar b/exwm-p (string= (system-name) "
chaman
")
"Whether or not we will be using `exwm'.")
;; keep ~/.emacs.d clean
"Whether or not we will be using `exwm'.")
;; keep ~/.emacs.d clean
@@
-639,17
+639,17
@@
around if needed."
([XF86AudioMute] .
(lambda ()
(interactive)
([XF86AudioMute] .
(lambda ()
(interactive)
- (start-process "" nil "
pamixer" "--toggle-mut
e")))
+ (start-process "" nil "
amixer" "set" "'Master',0" "toggl
e")))
([XF86AudioLowerVolume] .
(lambda ()
(interactive)
(start-process
([XF86AudioLowerVolume] .
(lambda ()
(interactive)
(start-process
- "" nil "
pamixer" "--allow-boost" "--decrease" "5
")))
+ "" nil "
amixer" "set" "'Master',0" "5%-
")))
([XF86AudioRaiseVolume] .
(lambda ()
(interactive)
(start-process
([XF86AudioRaiseVolume] .
(lambda ()
(interactive)
(start-process
- "" nil "
pamixer" "--allow-boost" "--increase" "5
")))
+ "" nil "
amixer" "set" "'Master',0" "5%+
")))
([XF86AudioPlay] .
(lambda ()
(interactive)
([XF86AudioPlay] .
(lambda ()
(interactive)
@@
-707,7
+707,7
@@
around if needed."
(exwm-manage-finish . (lambda ()
(when exwm-class-name
(cond
(exwm-manage-finish . (lambda ()
(when exwm-class-name
(cond
- ((string= exwm-class-name "
Abrowser
")
+ ((string= exwm-class-name "
IceCat
")
(exwm-input-set-local-simulation-keys
`(,@exwm-input-simulation-keys
([?\C-\S-d] . [?\C-d]))))
(exwm-input-set-local-simulation-keys
`(,@exwm-input-simulation-keys
([?\C-\S-d] . [?\C-d]))))
@@
-1036,8
+1036,12
@@
This function is intended for use with `ivy-ignore-buffers'."
("C-S-l" . b/eshell-clear)
("M-r" . counsel-esh-history)
;; ([tab] . company-complete)
("C-S-l" . b/eshell-clear)
("M-r" . counsel-esh-history)
;; ([tab] . company-complete)
- :map eshell-hist-mode-map
- ("M-r" . counsel-esh-history)))
+ )
+ (if (version< "27" emacs-version)
+ (bind-keys :map eshell-hist-mode-map
+ ("M-r" . counsel-esh-history))
+ (bind-keys :map eshell-mode-map
+ ("M-r" . counsel-esh-history))))
:hook (eshell-mode . b/eshell-setup)
:custom
:hook (eshell-mode . b/eshell-setup)
:custom
@@
-1605,7
+1609,8
@@
This function is intended for use with `ivy-ignore-buffers'."
(interactive)
(mapc #'disable-theme custom-enabled-themes)
(load-theme 'tangomod t)
(interactive)
(mapc #'disable-theme custom-enabled-themes)
(load-theme 'tangomod t)
- (sml/apply-theme 'tangomod)
+ (when (featurep 'smart-mode-line)
+ (sml/apply-theme 'tangomod))
(font-lock-remove-keywords
'org-mode b/org-mode-font-lock-keywords)
(when (featurep 'erc-hl-nicks)
(font-lock-remove-keywords
'org-mode b/org-mode-font-lock-keywords)
(when (featurep 'erc-hl-nicks)
@@
-1618,7
+1623,8
@@
This function is intended for use with `ivy-ignore-buffers'."
(interactive)
(mapc #'disable-theme custom-enabled-themes)
(load-theme 'doom-one t)
(interactive)
(mapc #'disable-theme custom-enabled-themes)
(load-theme 'doom-one t)
- (sml/apply-theme 'automatic)
+ (when (featurep 'smart-mode-line)
+ (sml/apply-theme 'automatic))
(font-lock-add-keywords
'org-mode b/org-mode-font-lock-keywords t)
(when (featurep 'erc-hl-nicks)
(font-lock-add-keywords
'org-mode b/org-mode-font-lock-keywords t)
(when (featurep 'erc-hl-nicks)
@@
-2492,7
+2498,8
@@
https://csclub.uwaterloo.ca/~abandali")
(use-package mm-uu
:config
(use-package mm-uu
:config
- (set-face-attribute 'mm-uu-extract nil :extend t)
+ (when (version< "27" emacs-version)
+ (set-face-attribute 'mm-uu-extract nil :extend t))
:custom
(mm-uu-diff-groups-regexp
"\\(gmane\\|gnu\\|l\\)\\..*\\(diff\\|commit\\|cvs\\|bug\\|dev\\)"))
:custom
(mm-uu-diff-groups-regexp
"\\(gmane\\|gnu\\|l\\)\\..*\\(diff\\|commit\\|cvs\\|bug\\|dev\\)"))