Remove amx package in favor of counsel-M-x and add vc-msg

This commit is contained in:
kj 2023-04-14 11:47:17 -04:00
parent 2d91024820
commit 7603b69925
2 changed files with 9 additions and 9 deletions

1
.gitignore vendored
View File

@ -22,3 +22,4 @@ workspace/
/diary
/history
/projectile.cache
/request/

View File

@ -7,15 +7,7 @@
;;; Code:
;; Mejorar M-x
(use-package amx
:defer t
:straight t
:bind (("M-x" . amx)
("<menu>" . amx))
:init (setq amx-history-length 20))
;; Iconos principalmente para ser usados por neotree
;; Iconos bonitos
(use-package all-the-icons
:defer t
:straight t)
@ -282,6 +274,13 @@
:hook (prog-mode . vs-comment-return-mode)
)
(use-package vc-msg
:straight t
:defer t
:bind (("C-c v" . vc-msg-show)
("C-c C-v" . vc-msg-show))
)
;; Terminal
(use-package vterm :ensure t :defer t :straight t)