mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-05-19 05:24:22 +00:00
languages/ocaml: remove invalid filetypes
`:checkhealth` output: ``` - ⚠️ WARNING Unknown filetype 'menhir' (Hint: filename extension != filetype). - ⚠️ WARNING Unknown filetype 'ocamlinterface' (Hint: filename extension != filetype). - ⚠️ WARNING Unknown filetype 'ocamllex' (Hint: filename extension != filetype). - ⚠️ WARNING Unknown filetype 'reason' (Hint: filename extension != filetype). ```
This commit is contained in:
parent
8c1ee15007
commit
c58930be36
2 changed files with 3 additions and 1 deletions
|
|
@ -482,6 +482,8 @@ https://github.com/gorbit99/codewindow.nvim
|
|||
`geom`, `comp`).
|
||||
- Remove invalid filetype from go lsp config (`gotmpl`).
|
||||
- Remove invalid filetype from markdown lsp config (`mdx`).
|
||||
- Remove invalid filetypes from ocaml lsp config (`menhir`, `ocamlinterface`,
|
||||
`ocamllex` and `reason`).
|
||||
|
||||
[itscrystalline](https://github.com/itscrystalline):
|
||||
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ in {
|
|||
vim.lsp = {
|
||||
presets = genAttrs cfg.lsp.servers (_: {enable = true;});
|
||||
servers = genAttrs cfg.lsp.servers (_: {
|
||||
filetypes = ["ocaml" "menhir" "ocamlinterface" "ocamllex" "reason" "dune"];
|
||||
filetypes = ["ocaml" "dune"];
|
||||
});
|
||||
};
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue