diff --git a/index.html b/index.html
index 954dccb..b6614b7 100644
--- a/index.html
+++ b/index.html
@@ -181,6 +181,8 @@ Dart: vim.languages.go.enable
vim.languages.lua.enable
+vim.languages.php.enable
Adding support for more languages, and improving support for existing ones are great places where you can contribute with a PR.
In any of the opt.languages.<language>.lsp.package
options you can provide your own LSP package, or provide
the command to launch the language server, as a list of strings.
You can use this to skip automatic installation of a language server, and instead diff --git a/options.html b/options.html index b6986f8..f380f7f 100644 --- a/options.html +++ b/options.html @@ -914,6 +914,18 @@ If you are using a flutter SDK installed from a different source and encounter t <neovim-flake/modules/languages/nix.nix>
vim.languages.nix.treesitter.package
The nix treesitter package to use.
Type: package
Default: pkgs.vimPlugins.nvim-treesitter.builtGrammars.nix
Declared by:
<neovim-flake/modules/languages/nix.nix>
+ |
vim.languages.php.enable
Whether to enable PHP language support.
Type: boolean
Default: false
Example: true
Declared by:
+ <neovim-flake/modules/languages/php.nix>
+ |
vim.languages.php.lsp.enable
Whether to enable PHP LSP support.
Type: boolean
Default: false
Example: true
Declared by:
+ <neovim-flake/modules/languages/php.nix>
+ |
vim.languages.php.lsp.package
PHP LSP server package, or the command to run as a list of strings
Type: package or list of string
Default: <derivation phpactor-2023.08.06-1>
Example: "[lib.getExe pkgs.jdt-language-server \" - data \" \" ~/.cache/jdtls/workspace \"]"
Declared by:
+ <neovim-flake/modules/languages/php.nix>
+ |
vim.languages.php.lsp.server
PHP LSP server to use
Type: one of "phan", "phpactor"
Default: "phpactor"
Declared by:
+ <neovim-flake/modules/languages/php.nix>
+ |
vim.languages.php.treesitter.enable
Whether to enable Enable PHP treesitter.
Type: boolean
Default: false
Example: true
Declared by:
+ <neovim-flake/modules/languages/php.nix>
+ |
vim.languages.php.treesitter.package
The php treesitter package to use.
Type: package
Default: pkgs.vimPlugins.nvim-treesitter.builtGrammars.php
Declared by:
+ <neovim-flake/modules/languages/php.nix>
|
vim.languages.python.enable
Whether to enable Python language support.
Type: boolean
Default: false
Example: true
Declared by:
<neovim-flake/modules/languages/python.nix>
|
vim.languages.python.dap.enable
Enable Python Debug Adapter
Type: boolean
Default: false
Declared by: