Compare commits

..

4 Commits

Author SHA1 Message Date
kj
f48e200fe7 Enable which-key. 2025-04-28 14:34:03 -03:00
kj
668a2c3c91 Remove unused shortcuts. 2025-04-28 14:32:45 -03:00
kj
cb8a4dcd75 Reduce padding on vertico postframe. 2025-04-28 14:31:56 -03:00
kj
4749773a51 Add delay to corfu. 2025-04-28 14:30:44 -03:00
4 changed files with 11 additions and 7 deletions

View File

@ -28,8 +28,8 @@
:custom
(corfu-auto t)
:config
(setq corfu-popupinfo-delay 0
;; corfu-auto-delay 0.5
(setq corfu-popupinfo-delay 1
corfu-auto-delay 0.5
corfu-auto-prefix 1
corfu-cycle t
corfu-quit-at-boundary t

View File

@ -160,8 +160,8 @@
(vertico-posframe-mode 1)
(setq vertico-posframe-border-width 1)
(setq vertico-posframe-parameters
'((left-fringe . 16)
(right-fringe . 16)))
'((left-fringe . 8)
(right-fringe . 8)))
)
(provide 'init-minibuffer)

View File

@ -106,8 +106,6 @@
(use-package org
:defer t
:ensure nil
:bind (("C-c a" . org-agenda)
("C-c c" . org-capture))
:hook
(org-mode . kj/org-hook)
:config

View File

@ -418,11 +418,17 @@
("podman" "/bin/bash"))) ;; Tanto docker como podman usarán bash cuado se contecte mediante tramp
)
;; Cuando iniicias un atajo de teclas te muestra las posibilidades
;; Cuando inicias un atajo de teclas te muestra las posibilidades
(use-package which-key
:defer t
:hook (elpaca-after-init . which-key-mode))
;; Muestra which-key en un frame en el centro en lugar de abajo
(use-package which-key-posframe
:after which-key
:config
(which-key-posframe-mode))
;; Restaurar el estado de los frames
(use-package winner
:ensure nil