-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(nextls): multi-root workspaces (#184)
* feat(nextls): multi-root workspaces This patch has a dependency on the `mhanberg/workspace-folders.nvim` plugin. To try out the behavior, intsall that plugin and create a `.code-workspace` file that describes your multi-root workspace (or mono repo as most call it). If your monorepo is called "money-factory-io", with the folders "crypto", "ai-chat-app", and "drop-shipping-cms", your `code-workspace` would be named `money-factory-io.code-workspace` and look like: ```json { "folders": [ {"path": "crypto"}, {"path": "ai-chat-app"}, {"path": "drop-shipping-cms"}, ] } ``` * fixup! feat(nextls): multi-root workspaces
- Loading branch information
Showing
2 changed files
with
54 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters