Add drag-stuff package #562

This commit is contained in:
Henrik Lissner 2019-10-07 21:36:27 -04:00
parent 0a218021a2
commit 4d8647fe7a
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 11 additions and 0 deletions

View file

@ -34,6 +34,16 @@
;; prompt for the key passphrase. ;; prompt for the key passphrase.
epa-pinentry-mode 'loopback)) epa-pinentry-mode 'loopback))
(use-package! drag-stuff
:defer t
:init
(map! :gnv "<M-up>" #'drag-stuff-up
:gnv "<M-down>" #'drag-stuff-down
:gnv "<M-left>" #'drag-stuff-left
:gnv "<M-right>" #'drag-stuff-right))
;;;###package tramp ;;;###package tramp
(unless IS-WINDOWS (unless IS-WINDOWS
(setq tramp-default-method "ssh")) ; faster than the default scp (setq tramp-default-method "ssh")) ; faster than the default scp

View file

@ -3,6 +3,7 @@
(package! avy) (package! avy)
(package! ace-link) (package! ace-link)
(package! drag-stuff)
(unless (featurep! :editor evil) (unless (featurep! :editor evil)
(package! expand-region)) (package! expand-region))