Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 607 Bytes

sublime-plugin.md

File metadata and controls

20 lines (17 loc) · 607 Bytes

Using NoVerify as language server for Sublime Text

You can install https://github.com/tomv564/LSP using Package Control. Here is an example config for NoVerify (replaces phpls):

{
  "clients": {
    "phpls": {
      "command": ["/path/to/noverify", "-cache-dir=/path/to/cache", "-cores=4", "-lang-server"],
      "scopes": ["source.php", "embedding.php"],
      "syntaxes": ["Packages/PHP/PHP.sublime-syntax"],
      "languageId": "php"
    }
  },
  "log_stderr": true,
  "only_show_lsp_completions": true
}

You can then enable phpls for current project and enjoy all supported features.