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 "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)
|
||||
|
||||
|
|
|
@ -42,15 +42,30 @@
|
|||
(package-initialize)
|
||||
|
||||
(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
|
||||
dash diminish elisp-slime-nav
|
||||
epl expand-region flycheck gist
|
||||
gitconfig-mode gitignore-mode grizzl
|
||||
guru-mode projectile
|
||||
magit move-text rainbow-mode
|
||||
smartparens undo-tree
|
||||
volatile-highlights zenburn-theme)
|
||||
dash
|
||||
diminish
|
||||
elisp-slime-nav
|
||||
epl
|
||||
expand-region
|
||||
flycheck
|
||||
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.")
|
||||
|
||||
(defun prelude-packages-installed-p ()
|
||||
|
|
Loading…
Reference in a new issue