chore(windows): fold siren-buffer-move module into siren-windmove module

This commit is contained in:
2020-08-25 01:47:42 +01:00
parent c21df804ed
commit 7a205aa74e
2 changed files with 2 additions and 18 deletions

View File

@@ -1,17 +0,0 @@
;;; 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

View File

@@ -7,7 +7,8 @@
;;; Code:
(when (version< emacs-version "27.0")
(require 'siren-buffer-move))
(use-package buffer-move
:defer t))
(use-package windmove
:straight (:type built-in)