mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
- 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
14 lines
269 B
EmacsLisp
14 lines
269 B
EmacsLisp
;;; siren-toggle-quotes.el --- jimeh's Emacs Siren: toggle-quotes.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration of toggle-quotes.
|
|
|
|
;;; Code:
|
|
|
|
(use-package toggle-quotes
|
|
:bind (("C-'" . toggle-quotes)))
|
|
|
|
(provide 'siren-toggle-quotes)
|
|
;;; siren-toggle-quotes.el ends here
|