mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 19:46:17 +01:00
More counsel
Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
parent
b0e4b94aa3
commit
03e7c863f5
|
@ -925,8 +925,7 @@ parts, separate them with a ~<SPC>~.
|
||||||
(use-package counsel
|
(use-package counsel
|
||||||
:straight t
|
:straight t
|
||||||
:config
|
:config
|
||||||
(counsel-mode 1)
|
(counsel-mode 1))
|
||||||
:bind ("C-x b" . counsel-switch-buffer))
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
~ivy-rich~ and ~all-the-icons~ compatibility.
|
~ivy-rich~ and ~all-the-icons~ compatibility.
|
||||||
|
@ -1028,6 +1027,15 @@ Enable ~projectile~.
|
||||||
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map))
|
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
Add Counsel integration for projectile.
|
||||||
|
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package counsel-projectile
|
||||||
|
:straight t
|
||||||
|
:after (ivy counsel)
|
||||||
|
:init (counsel-projectile-mode))
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
* VTerm
|
* VTerm
|
||||||
|
|
||||||
~vterm~ is fun, but it does not play well with ~evil~, at least by default. Therefore we need to make it
|
~vterm~ is fun, but it does not play well with ~evil~, at least by default. Therefore we need to make it
|
||||||
|
|
Loading…
Reference in a new issue