From 64409f45caa21076e6acd01d73c617e701553af8 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Thu, 23 Mar 2017 20:45:56 -0400 Subject: [PATCH] Move windmove bindinds into use-package block --- .emacs.d/init.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 7281744..451f031 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -30,10 +30,6 @@ (setq backup-directory-alist `((".*" . ,temporary-file-directory)) auto-save-file-name-transforms `((".*" ,temporary-file-directory t))) -;;;; keybinds -(when (fboundp 'windmove-default-keybindings) - (windmove-default-keybindings)) - ;;; Packages ;;;; install/load quelpa (require 'package) @@ -156,6 +152,10 @@ (add-to-list 'org-babel-load-languages '(dot . t)) (add-to-list 'org-src-lang-modes '("dot" . graphviz-dot))) +(use-package windmove + :config + (windmove-default-keybindings)) + ;;;; external packages (required) (use-package company :ensure :config