Initial version of dart module

This commit is contained in:
sevensidedmarble (Andrew Stewart) 2020-02-15 12:22:01 -05:00
parent b0978a4526
commit 45da8d0d5f
4 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,12 @@
;;; lang/dart/config.el -*- lexical-binding: t; -*-
(cond ((featurep! +flutter) (load! "+flutter"))
((featurep! +lsp) (load! "+lsp")))
(use-package! dart-mode
:config
(when (featurep! +flutter)
(if IS-LINUX
(setq lsp-dart-sdk-dir "/opt/flutter/bin/cache/dart-sdk/")))
(when (featurep! +lsp)
(add-hook 'dart-mode-hook 'lsp)))