Add new theme and make lua a standalone lang module
Some checks failed
/ Test config on 20 (push) Failing after 50s

This commit is contained in:
Maciej 2025-01-22 14:17:38 +02:00
parent 62a523fbec
commit 67066dee3d
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
11 changed files with 269 additions and 177 deletions

View file

@ -49,12 +49,16 @@
;; Set default completion values:
(set-default 'completion-at-point-functions
(list #'cape-dabbrev #'cape-file #'cape-keyword)))
(list (cape-capf-super #'cape-dabbrev #'yasnippet-capf)
#'cape-file
#'cape-keyword)))
(defun icejam-set-no-lsp-capfs ()
"Set `completion-at-point-function` to non-LSP list."
(setq-local completion-at-point-functions
(list #'cape-dabbrev #'cape-file #'cape-keyword)))
(list (cape-capf-super #'cape-dabbrev #'yasnippet-capf)
#'cape-file
#'cape-keyword)))
(defun icejam-set-lsp-capfs ()
"Set `completion-at-point-function` to list where LSP is supported."