Fix the wrong type for haskell lsp client

This commit is contained in:
Sameer Rahmani 2024-05-23 19:29:37 +01:00
parent f803f9b0b8
commit 11086cd7c1
Signed by: lxsameer
GPG Key ID: 8741FACBF412FFA5
2 changed files with 3 additions and 2 deletions

View File

@ -34,7 +34,7 @@
(lambda (x) `(haskell (lambda (x) `(haskell
(plugin (plugin
(,x (,x
(globalOn . :json-true))))) (globalOn . t)))))
'(ghcide-code-actions-fill-holes '(ghcide-code-actions-fill-holes
ghcide-completions ghcide-completions
ghcide-hover-and-symbols ghcide-hover-and-symbols
@ -77,7 +77,7 @@
(:map haskell-mode-map (:map haskell-mode-map
("M-n" . haskell-goto-next-error) ("M-n" . haskell-goto-next-error)
("M-p" . haskell-goto-prev-error) ("M-p" . haskell-goto-prev-error)
("C-c C-c" . haskell-compile))) ("C-c c" . haskell-compile)))
(use! haskell-cabal-mode (use! haskell-cabal-mode

View File

@ -200,6 +200,7 @@ match all of the components in any order."
(use! embark-consult (use! embark-consult
"Embark integration for consult" "Embark integration for consult"
:after embark
:hook :hook
(embark-collect-mode . consult-preview-at-point-mode)) (embark-collect-mode . consult-preview-at-point-mode))