diff options
author | Alan Pearce | 2019-06-17 21:58:23 +0200 |
---|---|---|
committer | Alan Pearce | 2019-06-17 21:58:23 +0200 |
commit | bb9f6cba2c89220ffcaba099d1728bd9a2ffa1f8 (patch) | |
tree | 1ea0653e531c580b9127d6d8fa518f0210838b64 /emacs/.emacs.d/main.el | |
parent | 0594d4d8232be5b4b232affe8319b400f988870a (diff) | |
download | nixfiles-bb9f6cba2c89220ffcaba099d1728bd9a2ffa1f8.tar.lz nixfiles-bb9f6cba2c89220ffcaba099d1728bd9a2ffa1f8.tar.zst nixfiles-bb9f6cba2c89220ffcaba099d1728bd9a2ffa1f8.zip |
Emacs: fix keybinds
Diffstat (limited to 'emacs/.emacs.d/main.el')
-rw-r--r-- | emacs/.emacs.d/main.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index b82a1287..749575b8 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -142,8 +142,8 @@ With two prefix arguments, write out the day and month name." :after (evil) :custom ((eyebrowse-new-workspace #'counsel-projectile-switch-project) (eyebrowse-mode t)) - :general (:keymaps 'evil-window-map - "0" #'eyebrowse-switch-to-window-config-0 + :general (:keymap 'evil-window-map + "0" #'eyebrowse-switch-to-window-config-0 "1" #'eyebrowse-switch-to-window-config-1 "2" #'eyebrowse-switch-to-window-config-2 "3" #'eyebrowse-switch-to-window-config-3 @@ -473,7 +473,7 @@ With two prefix arguments, write out the day and month name." (my-leader-def "" nil "h" '(:keymap ehelp-map) - "w" '(:keymap evil-window-map) + "w" '(:keymap evil-window-map :package evil) "x" '(:keymap ctl-x-map) "q" #'evil-delete-buffer "p" projectile-command-map |