diff options
author | 2019-09-08 09:45:47 -0400 | |
---|---|---|
committer | 2019-09-08 12:09:59 -0400 | |
commit | 63ed18696c88c16c27622148baa7411fb3811d64 (patch) | |
tree | 4a3d62d6d76424aca8b7d5472fe5f60a2cf83490 /.emacs.d/init.el | |
parent | 2fdc00ae83ed4cf61c578b6ab8fd83ea67fd0284 (diff) | |
download | configs-63ed18696c88c16c27622148baa7411fb3811d64.tar.gz configs-63ed18696c88c16c27622148baa7411fb3811d64.tar.xz configs-63ed18696c88c16c27622148baa7411fb3811d64.zip |
emacs: update packages, use dmenu for s-SPC
and move what was previously bound to s-SPC to S-s-SPC
Diffstat (limited to '')
-rw-r--r-- | .emacs.d/init.el | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 9f5d07f..9b0c0c7 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -605,11 +605,12 @@ around if needed." (setq exwm-input-global-keys `(([?\s-R] . exwm-reset) ([?\s-\\] . exwm-workspace-switch) - ([?\s-\s] . (lambda (command) - (interactive - (list (read-shell-command "➜ "))) - (start-process-shell-command - command nil command))) + ([?\s-\s] . dmenu) + ([?\S-\s-\s] . (lambda (command) + (interactive + (list (read-shell-command "➜ "))) + (start-process-shell-command + command nil command))) ([s-return] . (lambda () (interactive) (start-process "" nil "urxvt"))) @@ -1936,9 +1937,7 @@ This function is intended for use with `ivy-ignore-buffers'." :config (minions-mode)) (use-package dmenu - :disabled :custom - (dmenu-history-size 0) (dmenu-prompt-string "run: ") (dmenu-save-file (b/var "dmenu-items"))) |