Add new theme and make lua a standalone lang module
Some checks failed
/ Test config on 20 (push) Failing after 50s
Some checks failed
/ Test config on 20 (push) Failing after 50s
This commit is contained in:
parent
62a523fbec
commit
67066dee3d
11 changed files with 269 additions and 177 deletions
|
|
@ -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."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue