diff --git a/options.html b/options.html index 9507a0f..abcce9e 100644 --- a/options.html +++ b/options.html @@ -10434,6 +10434,234 @@ package

+
+ + vim.languages.ocaml.enable + + +
+
+

Whether to enable OCaml language support.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<nvf/modules/plugins/languages/ocaml.nix> + +
+
+
+ + vim.languages.ocaml.format.enable + + +
+
+

Whether to enable OCaml formatting support (ocamlformat).

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<nvf/modules/plugins/languages/ocaml.nix> + +
+
+
+ + vim.languages.ocaml.format.package + + +
+
+

OCaml formatter package

+ +

Type: +package

+ +

Default: +<derivation ocaml5.1.1-ocamlformat-0.26.1>

+ +

Declared by:

+ + +
+ +<nvf/modules/plugins/languages/ocaml.nix> + +
+
+
+ + vim.languages.ocaml.format.type + + +
+
+

OCaml formatter to use

+ +

Type: +value “ocamlformat” (singular enum)

+ +

Default: +"ocamlformat"

+ +

Declared by:

+ + +
+ +<nvf/modules/plugins/languages/ocaml.nix> + +
+
+
+ + vim.languages.ocaml.lsp.enable + + +
+
+

Whether to enable OCaml LSP support (ocaml-lsp).

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<nvf/modules/plugins/languages/ocaml.nix> + +
+
+
+ + vim.languages.ocaml.lsp.package + + +
+
+

OCaml language server package, or the command to run as a list of strings

+ +

Type: +package or list of string

+ +

Default: +<derivation ocaml5.1.1-ocaml-lsp-server-1.17.0>

+ +

Declared by:

+ + +
+ +<nvf/modules/plugins/languages/ocaml.nix> + +
+
+
+ + vim.languages.ocaml.lsp.server + + +
+
+

OCaml LSP server to user

+ +

Type: +value “ocaml-lsp” (singular enum)

+ +

Default: +"ocaml-lsp"

+ +

Declared by:

+ + +
+ +<nvf/modules/plugins/languages/ocaml.nix> + +
+
+
+ + vim.languages.ocaml.treesitter.enable + + +
+
+

Whether to enable OCaml treesitter.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<nvf/modules/plugins/languages/ocaml.nix> + +
+
+
+ + vim.languages.ocaml.treesitter.package + + +
+
+

The ocaml treesitter package to use.

+ +

Type: +package

+ +

Default: +pkgs.vimPlugins.nvim-treesitter.builtGrammars.ocaml

+ +

Declared by:

+ + +
+ +<nvf/modules/plugins/languages/ocaml.nix> + +
+
vim.languages.php.enable @@ -19635,7 +19863,7 @@ list of string

'' { "filename", - symbols = {modified = ' ', readonly = ' '}, + symbols = {modified = ' ', readonly = ' '}, separator = {right = ''} } '' @@ -19738,13 +19966,17 @@ list of string

return msg end, icon = ' ', + separator = {left = ''}, } '' '' { "diagnostics", - sources = {'nvim_lsp', 'nvim_diagnostic', 'coc'}, + sources = {'nvim_lsp', 'nvim_diagnostic', 'nvim_diagnostic', 'vim_lsp', 'coc'}, symbols = {error = '󰅙 ', warn = ' ', info = ' ', hint = '󰌵 '}, + colored = true, + update_in_insert = false, + always_visible = false, diagnostics_color = { color_error = { fg = 'red' }, color_warn = { fg = 'yellow' }, @@ -19782,16 +20014,13 @@ list of string

'searchcount', maxcount = 999, timeout = 120, - } '' '' { "branch", icon = ' •', - separator = { - left = '', - }, + separator = {left = ''} } '' ] @@ -19820,7 +20049,10 @@ list of string

Default:

[
   ''
-    {"progress"}
+    {
+      "progress",
+      separator = {left = ''}
+    }
   ''
   ''
     {"location"}
@@ -19833,7 +20065,7 @@ list of string

unix = '', -- e712 dos = '', -- e70f mac = '', -- e711 - }, + } } '' ] diff --git a/release-notes.html b/release-notes.html index c6d522d..ab84b62 100644 --- a/release-notes.html +++ b/release-notes.html @@ -151,7 +151,7 @@ configuration.

  • Refactor pr formatter setups respectively. Diagnostics support is considered, and may be added once the credo linter has been added to nixpkgs. A pull request is currently open.

  • Remove vim-tidal and friends

  • Cleaned up Lualine module to reduce theme dependency on Catppuccin, and fixed -blending issues in component separators.

  • +blending issues in component separators.

    jacekpoz: