Compare commits

...

2 Commits

Author SHA1 Message Date
pouya-abbassi 3f6a77618a Merge pull request 'Add company-box to clojure cube' (#2) from pouya-abbassi/FG42:master into master
Reviewed-on: #2
2023-10-17 12:46:58 +01:00
Pouya Abbassi 726353f80f
Add company-box to clojure cube 2023-10-17 15:00:16 +03:30
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)