Use TS mode for Kotlin
Some checks failed
/ Test config on 20 (push) Failing after 49s

This commit is contained in:
Maciej 2024-11-24 15:30:05 +02:00
parent 34a2741886
commit d1ee6a12ed
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
7 changed files with 203 additions and 195 deletions

View file

@ -2,7 +2,8 @@
;;; Commentary:
;;;
;;; completing-read is the way of completing things in minibuffer. This module
;;; provides all of that functionality, everything related to minbuffer being helpful.
;;; provides all of that functionality, everything related to minbuffer being
;;; helpful.
;;;
;;; Code:
@ -38,6 +39,10 @@
(setopt vertico-resize t) ;; Grow and shrink the vertico minibufffer
(setopt vertico-cycle t) ;; Cycle completion
;; Add working page up /down
(keymap-set vertico-map "<next>" 'vertico-scroll-up)
(keymap-set vertico-map "<prior>" 'vertico-scroll-down)
(declare-function vertico-mode "vertico")
(vertico-mode t))
@ -62,7 +67,7 @@
--search-zip --hidden --glob \"!.git/*\"")
:bind (:map icejam-keys-mode-map
("C-c t" . find-file)
("M-g" . consult-goto-line)
("M-g g" . consult-goto-line)
("C-c a" . consult-ripgrep)))
(use-package helpful :ensure t)