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
15 lines
319 B
EmacsLisp
15 lines
319 B
EmacsLisp
;;; siren-browse-kill-ring.el --- jimeh's Emacs Siren: browse-kill-ring configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for browse-kill-ring.
|
|
|
|
;;; Code:
|
|
|
|
(use-package browse-kill-ring
|
|
:config
|
|
(browse-kill-ring-default-keybindings))
|
|
|
|
(provide 'siren-browse-kill-ring)
|
|
;;; siren-browse-kill-ring.el ends here
|