Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions docs/manual/release-notes/rl-0.9.md
Original file line number Diff line number Diff line change
Expand Up @@ -355,9 +355,6 @@
more flexibility in nvf and reuse of LSPs across languages. Dropped
`deprecatedSingleOrListOf` in favor of `listOf` for the affected LSP options.

- Added {option}`vim.lsp.presets.docker-language-server.enable` for Docker
support.

- Added {option}`vim.lsp.presets.angular-language-server.enable` for Angular
Template support.

Expand Down Expand Up @@ -385,6 +382,11 @@
[poseidon-rises](https://github.com/poseidon-rises) for creating most of it in
[!1104](https://github.com/NotAShelf/nvf/pull/1104).

- Added {option}`vim.lsp.presets.docker-language-server.enable` for Docker
support.

- Mapped `dockercompose` to be highlighted by treesitter as `yaml`.

- Added [`mdformat`](https://mdformat.rtfd.io/) support to `languages.markdown`
with the extensions for [GFM](https://github.github.com/gfm/),
[front matter](https://www.markdownlang.com/advanced/frontmatter.html) and
Expand Down
3 changes: 3 additions & 0 deletions modules/plugins/languages/docker.nix
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ in {
vim.treesitter = {
enable = true;
grammars = [cfg.treesitter.package];
filetypeMappings = {
yaml = ["dockercompose"];
Comment thread
horriblename marked this conversation as resolved.
};
};
})

Expand Down
Loading