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
327 B
EmacsLisp
18 lines
327 B
EmacsLisp
;;; siren-buffer-move.el --- jimeh's Emacs Siren: buffer-move
|
|
|
|
;;; Commentary:
|
|
|
|
;; Configuration for buffer-move
|
|
|
|
;;; Code:
|
|
|
|
(use-package buffer-move
|
|
:bind
|
|
("M-K" . buf-move-down)
|
|
("M-I" . buf-move-up)
|
|
("M-J" . buf-move-left)
|
|
("M-L" . buf-move-right))
|
|
|
|
(provide 'siren-buffer-move)
|
|
;;; siren-buffer-move.el ends here
|