diff options
| author | Github Actions <actions@github> | 2020-09-07 18:50:30 +0000 |
|---|---|---|
| committer | Github Actions <actions@github> | 2020-09-07 18:50:30 +0000 |
| commit | 60133c47e0fd82556d7ca092546ebfa8d047466e (patch) | |
| tree | 664fef0f88242e689c23c13179c6f0161e892749 /README.md | |
| parent | hls: add config for haskell language server #336 (diff) | |
| download | nvim-lspconfig-60133c47e0fd82556d7ca092546ebfa8d047466e.tar nvim-lspconfig-60133c47e0fd82556d7ca092546ebfa8d047466e.tar.gz nvim-lspconfig-60133c47e0fd82556d7ca092546ebfa8d047466e.tar.bz2 nvim-lspconfig-60133c47e0fd82556d7ca092546ebfa8d047466e.tar.lz nvim-lspconfig-60133c47e0fd82556d7ca092546ebfa8d047466e.tar.xz nvim-lspconfig-60133c47e0fd82556d7ca092546ebfa8d047466e.tar.zst nvim-lspconfig-60133c47e0fd82556d7ca092546ebfa8d047466e.zip | |
[docgen] Update README.md
skip-checks: true
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 25 |
1 files changed, 24 insertions, 1 deletions
@@ -264,6 +264,7 @@ that config. - [ghcide](#ghcide) - [gopls](#gopls) - [hie](#hie) +- [hls](#hls) - [html](#html) - [intelephense](#intelephense) - [jdtls](#jdtls) @@ -2101,6 +2102,24 @@ require'nvim_lsp'.hie.setup{} root_dir = root_pattern("stack.yaml", "package.yaml", ".git") ``` +## hls + +https://github.com/haskell/haskell-language-server + +Haskell Language Server + + +```lua +require'nvim_lsp'.hls.setup{} + + Commands: + + Default Values: + cmd = { "haskell-language-server-wrapper", "--lsp" } + filetypes = { "haskell", "lhaskell" } + root_dir = root_pattern("*.cabal", "stack.yaml", "cabal.project", "package.yaml", "hie.yaml") +``` + ## html https://github.com/vscode-langservers/vscode-html-languageserver-bin @@ -3041,7 +3060,7 @@ require'nvim_lsp'.omnisharp.setup{} Commands: Default Values: - cmd = { "/home/runner/.cache/nvim/nvim_lsp/omnisharp/run", "--languageserver", "--hostPID", "2652" } + cmd = { "/home/runner/.cache/nvim/nvim_lsp/omnisharp/run", "--languageserver", "--hostPID", "2801" } filetypes = { "cs", "vb" } init_options = {} on_new_config = <function 1> @@ -5070,6 +5089,10 @@ This server accepts configuration via the `settings` key. Validate vue\-html in \<template\> using eslint\-plugin\-vue +- **`vetur.validation.templateProps`**: `boolean` + + Validate props usage in \<template\> region\. Show error\/warning for not passing declared props to child components\. + </details> ```lua |
