mirror of
https://github.com/correl/dotfiles.git
synced 2025-03-07 04:35:47 -10:00
[emacs] configure helm and ace-jump
This commit is contained in:
parent
52575b8c74
commit
e6fb70b951
1 changed files with 32 additions and 2 deletions
|
@ -31,7 +31,7 @@
|
||||||
(global-auto-complete-mode t)))
|
(global-auto-complete-mode t)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Helm
|
** Helm
|
||||||
#+name: helm
|
#+name: packages
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package helm
|
(use-package helm
|
||||||
:ensure t
|
:ensure t
|
||||||
|
@ -41,7 +41,9 @@
|
||||||
("C-x b" . helm-mini)
|
("C-x b" . helm-mini)
|
||||||
("C-x C-b" . helm-buffers-list)
|
("C-x C-b" . helm-buffers-list)
|
||||||
("C-x C-f" . helm-find-files)
|
("C-x C-f" . helm-find-files)
|
||||||
("C-x C-r" . helm-recentf))
|
("C-x C-r" . helm-recentf)
|
||||||
|
("C-x c o" . helm-occur)
|
||||||
|
("C-x c s" . helm-swoop))
|
||||||
:init (progn
|
:init (progn
|
||||||
(require 'helm-config)
|
(require 'helm-config)
|
||||||
(helm-mode 1)
|
(helm-mode 1)
|
||||||
|
@ -50,6 +52,34 @@
|
||||||
(define-key eshell-mode-map (kbd "TAB") 'helm-esh-pcomplete)
|
(define-key eshell-mode-map (kbd "TAB") 'helm-esh-pcomplete)
|
||||||
(define-key eshell-mode-map (kbd "C-c C-l") 'helm-eshell-history)))))
|
(define-key eshell-mode-map (kbd "C-c C-l") 'helm-eshell-history)))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
*** helm-descbinds
|
||||||
|
#+name: helm
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package helm-descbinds
|
||||||
|
:ensure t
|
||||||
|
:bind (("C-h b" . helm-descbinds)
|
||||||
|
("C-h w" . helm-descbinds)))
|
||||||
|
#+END_SRC
|
||||||
|
** Ace Jump
|
||||||
|
#+name: packages
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package ace-jump-mode
|
||||||
|
:ensure t)
|
||||||
|
#+END_SRC
|
||||||
|
*** ace-isearch
|
||||||
|
#+name: packages
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package ace-isearch
|
||||||
|
:ensure t
|
||||||
|
:init (global-ace-isearch-mode t))
|
||||||
|
#+END_SRC
|
||||||
|
*** ace-window
|
||||||
|
#+name: packages
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package ace-window
|
||||||
|
:ensure t
|
||||||
|
:bind ("C-x o" . ace-window))
|
||||||
|
#+END_SRC
|
||||||
** Expand Region
|
** Expand Region
|
||||||
#+name: packages
|
#+name: packages
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
|
Loading…
Add table
Reference in a new issue