Files
.emacs.d/modules/text-editing/siren-string-inflection.el
Jim Myhrberg 87a86191db Majorly re-organize modules
- Split large modules into smaller parts (e.g. siren-text-manipulation)
- Organize modules into high level groups:
  - completion
  - core
  - editor
  - languages
  - linting
  - misc
  - navigation
  - projects
  - spelling
  - text-editing
  - version-control
  - windows
  - workspaces
2018-05-20 17:31:11 +01:00

14 lines
319 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
:bind ("C-c C-." . string-inflection-cycle))
(provide 'siren-string-inflection)
;;; siren-string-inflection.el ends here