From ff50e98f80c2fc861ad3968f2cc40397b902dc66 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Wed, 1 Jul 2015 12:20:07 +0200 Subject: Emacs: Fix missing perspectives --- tag-emacs/emacs.d/init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tag-emacs/emacs.d') diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 90bc811..d1e7165 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -1036,7 +1036,7 @@ mouse-1: Display Line and Column Mode Menu")))))) (req-package perspective :bind (("s-p" . persp-switch)) :init (progn - (add-hook 'projectile-switch-project-hook #'persp-mode))) + (persp-mode))) (req-package persp-projectile :require (projectile perspective)) -- cgit 1.4.1 From 02847eb44ff921efe2a62a20b478822075bee951 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Thu, 2 Jul 2015 09:00:51 +0200 Subject: Emacs: Set ido-vertical keybinds --- tag-emacs/emacs.d/init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tag-emacs/emacs.d') diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index d1e7165..ba4ce1d 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -647,8 +647,8 @@ " [Too big]" " [Confirm]" "\n❯ " - "" - ))) + "") + ido-vertical-define-keys 'C-n-C-p-up-down-left-right)) :config (ido-vertical-mode 1)) (req-package flx-ido -- cgit 1.4.1 From 331196b3821f5d5a240ba300478c24119bdb1b53 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Thu, 2 Jul 2015 09:02:53 +0200 Subject: Emacs: Use ido in magit --- tag-emacs/emacs.d/init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tag-emacs/emacs.d') diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index ba4ce1d..f94e3e2 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -1057,7 +1057,8 @@ mouse-1: Display Line and Column Mode Menu")))))) :commands (magit-status) :config (rename-modeline magit-status-mode (char-to-string (-find #'char-displayable-p '(11942 5848 177))) (setq magit-last-seen-setup-instructions "1.4.0" - magit-auto-revert-mode t)) + magit-auto-revert-mode t + magit-completing-read-function #'magit-ido-completing-read)) :init (add-hook 'magit-mode-hook #'magit-load-config-extensions)) ;;;; Spelling -- cgit 1.4.1 From 90fac9da73f254af75379ee3e56a01bce49a83a5 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 3 Jul 2015 18:21:57 +0200 Subject: Update magit --- tag-emacs/emacs.d/Cask | 2 -- tag-emacs/emacs.d/init.el | 8 +++----- 2 files changed, 3 insertions(+), 7 deletions(-) (limited to 'tag-emacs/emacs.d') diff --git a/tag-emacs/emacs.d/Cask b/tag-emacs/emacs.d/Cask index beea0cf..02d9b3f 100644 --- a/tag-emacs/emacs.d/Cask +++ b/tag-emacs/emacs.d/Cask @@ -48,8 +48,6 @@ (depends-on "ggtags") (depends-on "gh") (depends-on "gist") -(depends-on "git-commit-mode") -(depends-on "git-rebase-mode") (depends-on "git-timemachine") (depends-on "go-eldoc") (depends-on "go-mode") diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index f94e3e2..2d036bb 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -1053,12 +1053,10 @@ mouse-1: Display Line and Column Mode Menu")))))) (add-hook 'magit-refresh-file-buffer-hook #'diff-hl-update))) (req-package magit - :diminish magit-auto-revert-mode :commands (magit-status) - :config (rename-modeline magit-status-mode (char-to-string (-find #'char-displayable-p '(11942 5848 177))) - (setq magit-last-seen-setup-instructions "1.4.0" - magit-auto-revert-mode t - magit-completing-read-function #'magit-ido-completing-read)) + :config (progn (rename-modeline magit-status-mode (char-to-string (-find #'char-displayable-p '(11942 5848 177)))) + (setq magit-last-seen-setup-instructions "1.4.0" + magit-completing-read-function #'magit-ido-completing-read)) :init (add-hook 'magit-mode-hook #'magit-load-config-extensions)) ;;;; Spelling -- cgit 1.4.1