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
18 lines
346 B
EmacsLisp
18 lines
346 B
EmacsLisp
;;; siren-smart-shift.el --- jimeh's Emacs Siren: smart-shift
|
|
|
|
;;; Commentary:
|
|
|
|
;; Configuration for smart-shift
|
|
|
|
;;; Code:
|
|
|
|
(use-package smart-shift
|
|
:bind
|
|
("C-c [" . smart-shift-left)
|
|
("C-c ]" . smart-shift-right)
|
|
("M-[" . smart-shift-left)
|
|
("M-]" . smart-shift-right))
|
|
|
|
(provide 'siren-smart-shift)
|
|
;;; siren-smart-shift.el ends here
|