Add ace-jump-buffer to Prelude
Keybindings set to `C-c k` and `S->`
This commit is contained in:
parent
7df35f074a
commit
58e15b93fc
2 changed files with 25 additions and 8 deletions
|
@ -113,6 +113,8 @@
|
||||||
|
|
||||||
(global-set-key (kbd "C-c j") 'ace-jump-mode)
|
(global-set-key (kbd "C-c j") 'ace-jump-mode)
|
||||||
(global-set-key (kbd "s-.") 'ace-jump-mode)
|
(global-set-key (kbd "s-.") 'ace-jump-mode)
|
||||||
|
(global-set-key (kbd "C-c k") 'ace-jump-buffer)
|
||||||
|
(global-set-key (kbd "s->") 'ace-jump-buffer)
|
||||||
|
|
||||||
(provide 'prelude-global-keybindings)
|
(provide 'prelude-global-keybindings)
|
||||||
|
|
||||||
|
|
|
@ -42,15 +42,30 @@
|
||||||
(package-initialize)
|
(package-initialize)
|
||||||
|
|
||||||
(defvar prelude-packages
|
(defvar prelude-packages
|
||||||
'(ace-jump-mode ack-and-a-half anzu
|
'(ace-jump-mode
|
||||||
|
ace-jump-buffer
|
||||||
|
ack-and-a-half
|
||||||
|
anzu
|
||||||
browse-kill-ring
|
browse-kill-ring
|
||||||
dash diminish elisp-slime-nav
|
dash
|
||||||
epl expand-region flycheck gist
|
diminish
|
||||||
gitconfig-mode gitignore-mode grizzl
|
elisp-slime-nav
|
||||||
guru-mode projectile
|
epl
|
||||||
magit move-text rainbow-mode
|
expand-region
|
||||||
smartparens undo-tree
|
flycheck
|
||||||
volatile-highlights zenburn-theme)
|
gist
|
||||||
|
gitconfig-mode
|
||||||
|
gitignore-mode
|
||||||
|
grizzl
|
||||||
|
guru-mode
|
||||||
|
projectile
|
||||||
|
magit
|
||||||
|
move-text
|
||||||
|
rainbow-mode
|
||||||
|
smartparens
|
||||||
|
undo-tree
|
||||||
|
volatile-highlights
|
||||||
|
zenburn-theme)
|
||||||
"A list of packages to ensure are installed at launch.")
|
"A list of packages to ensure are installed at launch.")
|
||||||
|
|
||||||
(defun prelude-packages-installed-p ()
|
(defun prelude-packages-installed-p ()
|
||||||
|
|
Loading…
Reference in a new issue