Merge pull request 'Add company-box to clojure cube' (#2) from pouya-abbassi/FG42:master into master

Reviewed-on: #2
This commit is contained in:
pouya-abbassi 2023-10-17 12:46:58 +01:00
commit 3f6a77618a
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)