02ff6cd4db
* Make showing the treeview in scala a config parameter * Add dhall lsp server integration
32 lines
580 B
EmacsLisp
32 lines
580 B
EmacsLisp
;;; packages.el --- Dhall Layer packages File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2020 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Colin Woodbury <colin@fosskers.ca>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
;;; Commentary:
|
|
|
|
;;; Code:
|
|
|
|
(defconst dhall-packages
|
|
'(
|
|
lsp-mode
|
|
dhall-mode
|
|
))
|
|
|
|
(defun dhall/init-dhall-mode ()
|
|
"Initialize dhall-mode."
|
|
(use-package dhall-mode
|
|
:defer t
|
|
|
|
))
|
|
|
|
(defun dhall/post-init-lsp-mode ()
|
|
(add-hook 'dhall-mode-hook #'lsp))
|
|
|
|
;;; packages.el ends here
|