mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
This is to ensure it stay up to date with the siren-shift-text module, which is currently the module I use for shifting text left/right. At some point I will re-evaluate the smart-shift package.
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
|