aboutsummaryrefslogtreecommitdiff
path: root/bard-emacs-modules/bard-emacs-lang.el
diff options
context:
space:
mode:
authorbard <[email protected]>2023-11-05 19:53:56 -0500
committerbard <[email protected]>2023-11-05 19:53:56 -0500
commitfc2223f82b690f8d45493a093c9e3aeb2b4b23f0 (patch)
tree2852a62e24b0484103edb8caa3872faf34c31409 /bard-emacs-modules/bard-emacs-lang.el
parent46012ab8b0b391ab66b4852a5498f5bf34ebff7f (diff)
emacs everywhere and emms mpris
Diffstat (limited to 'bard-emacs-modules/bard-emacs-lang.el')
-rw-r--r--bard-emacs-modules/bard-emacs-lang.el12
1 files changed, 5 insertions, 7 deletions
diff --git a/bard-emacs-modules/bard-emacs-lang.el b/bard-emacs-modules/bard-emacs-lang.el
index b8c11f3..3623718 100644
--- a/bard-emacs-modules/bard-emacs-lang.el
+++ b/bard-emacs-modules/bard-emacs-lang.el
@@ -24,13 +24,6 @@
;;; Commentary:
;;; Code:
-
-(message "Hello World!")
-
-(provide 'bard-emacs-lang)
-
-;;; bard-emacs-lang.el ends here
-
(defun bard/common-modes-hook ()
"Commonly used modes, bundled in one hook."
(display-line-numbers-mode 1)
@@ -47,5 +40,10 @@
(add-hook 'c++-mode-hook 'bard/c++-mode-keybindings)
(add-hook 'c++-mode 'bard/common-modes-hook)
+;; Haskell
+(setq exec-path (append exec-path '("/home/bard/.ghcup/bin/haskell-language-server-wrapper")))
+(setq exec-path (append exec-path '("/home/bard/.ghcup/bin/haskell-language-server-9.0.2")))
+(add-to-list 'exec-path "/home/bard/.ghcup/bin")
+
(provide 'bard-emacs-lang.el)
;;; bard-emacs-lang.el ends here