diff options
author | William Carroll <wpcarro@gmail.com> | 2020-09-02T14·03+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-09-02T14·03+0100 |
commit | ea274f924a637b3c32be0c19c961897ceacfae7c (patch) | |
tree | 27dfa2fa99ecf145bed6d5ed1e30d9af097ec585 /emacs/.emacs.d/wpc/colorscheme.el | |
parent | d1ee51746111c2456cdd9b9f4416e2356db8e8dc (diff) |
Remove KBD installations from more Elisp modules
I originally liked this pattern, but now I'd prefer to put everything in keybindings.el.
Diffstat (limited to 'emacs/.emacs.d/wpc/colorscheme.el')
-rw-r--r-- | emacs/.emacs.d/wpc/colorscheme.el | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/emacs/.emacs.d/wpc/colorscheme.el b/emacs/.emacs.d/wpc/colorscheme.el index 8f1ad332ac69..69b3f1b153de 100644 --- a/emacs/.emacs.d/wpc/colorscheme.el +++ b/emacs/.emacs.d/wpc/colorscheme.el @@ -19,18 +19,10 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (require 'cycle) -(require 'general) (require '>) (require 'cl-macs) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; Constants -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -(defcustom colorscheme-install-kbds? t - "If non-nil, enable the keybindings.") - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Library ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -90,13 +82,5 @@ Cycle prev otherwise." (interactive) (colorscheme-cycle :forward? nil)) -;; Keybindings -(when colorscheme-install-kbds? - (general-define-key - :prefix "<SPC>" - :states '(normal) - "Ft" #'colorscheme-next - "Pt" #'colorscheme-prev)) - (provide 'colorscheme) ;;; colorscheme.el ends here |