diff --git a/init.el b/init.el index b60fa09..e016763 100644 --- a/init.el +++ b/init.el @@ -33,7 +33,10 @@ ;; BASIC (require 'yaml-mode) (add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode)) - +(global-set-key (kbd "C-c ") 'windmove-left) +(global-set-key (kbd "C-c ") 'windmove-right) +(global-set-key (kbd "C-c ") 'windmove-up) +(global-set-key (kbd "C-c ") 'windmove-down) (require 'recentf) (recentf-mode 1) (global-set-key (kbd "C-") 'recentf-open-files) @@ -44,9 +47,10 @@ ;; Windows fixes ((string-equal system-type "windows-nt") (progn - (setq insert-directory-program "C:/Program Files/git/usr/bin/ls.exe") (defun quote-exe (path) (w32-short-file-name path)) + (setq insert-directory-program "C:/Program Files/git/usr/bin/ls.exe") + (setq find-program (quote-exe "C:/Program Files/git/usr/bin/find.exe")) (setq python-shell-interpreter (quote-exe (executable-find "python"))) (setq python-check-command (quote-exe (executable-find "flake8"))) ))