Add company-box to clojure cube #1

Closed
pouya-abbassi wants to merge 1 commits from pouya-abbassi/FG42:master into master
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)