Add company-box to clojure cube #2

Merged
pouya-abbassi merged 1 commits from pouya-abbassi/FG42:master into master 2023-10-17 12:46:58 +01:00
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)