Compare commits

...

3 Commits

Author SHA1 Message Date
cb4164f1de feat(emacs): flycheck
All checks were successful
build / build (push) Successful in 2m35s
2026-05-07 11:04:21 -06:00
f25b53bbfd feat(emacs): open hoogle in browser 2026-05-07 11:03:58 -06:00
664b43f22a feat(emacs): handle lsp docs 2026-05-07 09:38:22 -06:00
3 changed files with 17 additions and 0 deletions

View File

@@ -31,6 +31,7 @@
syd/which-key
syd/tramp
syd/handle
syd/flycheck
syd/org
syd/org/roam
syd/org/agenda

View File

@@ -0,0 +1,14 @@
;;; -*- lexical-binding: t -*-
(require 'syd/base)
(require 'syd/popups)
;; Nicer error messages, integrates with `lsp-mode'
(use-package flycheck
:custom ((flycheck-highlighting-mode nil))
:general
(:states '(motion normal)
"[ e" #'flycheck-previous-error
"] e" #'flycheck-next-error))
(provide 'syd/lsp)

View File

@@ -26,6 +26,8 @@
(defun syd-haskell-hoogle-start-server ()
(interactive)
(haskell-hoogle-start-server)
(browse-url-xdg-open (format "http://localhost:%d"
haskell-hoogle-port-number))
(message "Hoogle started on localhost:%d" haskell-hoogle-port-number))
(use-package haskell-mode