ace-window replaced other-window as window switcher

This commit is contained in:
Sameer Rahmani 2018-07-04 11:51:40 +01:00
parent 91b0e9b10f
commit 5b75a33cb3
3 changed files with 9 additions and 1 deletions

View File

@ -9,6 +9,10 @@
(depends-on 'ov)
(depends-on 'cheatsheet)
(depends-on 'all-the-icons)
;; Moving between windows
(depends-on 'ace-window)
;; Don't worry unless you're evil this mode won't start
(depends-on 'evil)

View File

@ -121,6 +121,11 @@
;;(spaceline-emacs-theme))
;; ACE Window
(global-set-key (kbd "C-<tab>") 'ace-window)
(setq aw-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l))
;; Tramp configuration -------------------------------------
(ability tramp ()
(setq tramp-default-method "ssh")

View File

@ -37,7 +37,6 @@ it inserts comment at the end of the line."
(defun setup-utils ()
"Setup several utitlies for FG42"
(global-set-key (kbd "C-k") 'kill-and-join-forward)
(global-set-key (kbd "C-<tab>") 'other-window)
(global-set-key (kbd "M-;") 'comment-dwim-line)
(global-set-key (kbd "M-j") (lambda ()
(interactive) (join-line -1))))