File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,15 @@ Emacs Dart IDE using [lsp-mode](https://github.com/emacs-lsp/lsp-mode) to connec
1515An example with a minimal configuration to start using ` lsp-dart ` :
1616``` elisp
1717(use-package lsp-mode :ensure t)
18- (use-package lsp-ui :ensure t)
19- (use-package company-lsp :ensure t)
2018
2119(use-package lsp-dart
2220 :ensure t
2321 :hook (dart-mode . lsp))
22+
23+ ;; Optional packages
24+ (use-package lsp-ui :ensure t)
25+ (use-package company-capf :ensure t)
26+
2427```
2528
2629## Features
@@ -58,8 +61,8 @@ Besides the `lsp-mode` features, `lsp-dart` implements the [custom methods featu
5861
5962## Additional packages
6063* [ lsp-ui] ( https://github.com/emacs-lsp/lsp-ui ) : Flycheck, documentation and code actions support.
61- * [ company-lsp] ( https://github.com/tigersoldier/company-lsp ) : LSP company backend.
6264* [ lsp-treemacs] ( https://github.com/emacs-lsp/lsp-treemacs ) : ` lsp-mode ` GUI controls implemented using treemacs.
65+ * [ company-capf] ( https://github.com/company-mode/company-mode ) : Completion backend support.
6366* [ flutter.el] ( https://github.com/amake/flutter.el ) : Tool to run emulator and tests from emacs.
6467* [ hover.el] ( https://github.com/ericdallo/hover.el ) : Tool to run flutter mobile apps from desktop without the need of an emulator.
6568
You can’t perform that action at this time.
0 commit comments