Add company-box to clojure cube

This commit is contained in:
Pouya Abbassi 2023-10-17 14:11:39 +03:30
parent 1ab16cf8af
commit aea6dbb8d6
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG Key ID: 591DF1A6C74C0CBC
1 changed files with 8 additions and 1 deletions

View File

@ -35,7 +35,14 @@
(aggressive-indent-mode 1)
(rainbow-delimiters-mode 1)
(when-flag lsp (lsp))
(fg42/fn-greek-lambda))
(fg42/fn-greek-lambda)
(add-hook 'clojure-mode-hook (lambda ()
(lsp)
(require 'company-capf)
(require 'company-box)
(setq company-backends
'((company-capf
company-keywords))))))
(provide 'cubes/clojure/core)