Files
.emacs.d/modules/text-editing/siren-string-inflection.el
Jim Myhrberg a8618938bf feat(core): use general.el for keybind definitions nearly everywhere
Primarily this replaces :bind with :general in all use-package calls.
2022-03-14 21:16:15 +00:00

15 lines
323 B
EmacsLisp

;;; siren-string-inflection.el --- jimeh's Emacs Siren: defaults for string-inflection
;;; Commentary:
;; Basic configuration for string-inflections.
;;; Code:
(use-package string-inflection
:general
("C-c C-u" 'string-inflection-cycle))
(provide 'siren-string-inflection)
;;; siren-string-inflection.el ends here