diff --git a/options.html b/options.html index 19f87f2..5e168fe 100644 --- a/options.html +++ b/options.html @@ -8741,54 +8741,6 @@ boolean

Example: true

-

Declared by:

- - -
- -<neovim-flake/modules/languages/markdown/markdown.nix> - -
- -
- - vim.languages.markdown.glow.enable - - -
-
-

Enable markdown preview in neovim with glow

- -

Type: -boolean

- -

Default: -true

- -

Declared by:

- - -
- -<neovim-flake/modules/languages/markdown/markdown.nix> - -
-
-
- - vim.languages.markdown.glow.mappings.openPreview - - -
-
-

Open preview

- -

Type: -null or string

- -

Default: -"<leader>p"

-

Declared by:

@@ -23588,6 +23540,278 @@ null or string

+
+ + vim.utility.preview.glow.enable + + +
+
+

Whether to enable markdown preview in neovim with glow.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<neovim-flake/modules/utility/preview/glow/glow.nix> + +
+
+
+ + vim.utility.preview.glow.mappings.openPreview + + +
+
+

Open preview

+ +

Type: +null or string

+ +

Default: +"<leader>p"

+ +

Declared by:

+ + +
+ +<neovim-flake/modules/utility/preview/glow/glow.nix> + +
+
+
+ + vim.utility.preview.markdownPreview.enable + + +
+
+

Whether to enable Markdown preview in neovim with markdown-preview.nvim.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<neovim-flake/modules/utility/preview/markdown-preview/markdown-preview.nix> + +
+
+
+ + vim.utility.preview.markdownPreview.alwaysAllowPreview + + +
+
+

Allow preview on all filetypes

+ +

Type: +boolean

+ +

Default: +false

+ +

Declared by:

+ + +
+ +<neovim-flake/modules/utility/preview/markdown-preview/markdown-preview.nix> + +
+
+
+ + vim.utility.preview.markdownPreview.autoClose + + +
+
+

Automatically close the preview window after leaving a Markdown buffer

+ +

Type: +boolean

+ +

Default: +true

+ +

Declared by:

+ + +
+ +<neovim-flake/modules/utility/preview/markdown-preview/markdown-preview.nix> + +
+
+
+ + vim.utility.preview.markdownPreview.autoStart + + +
+
+

Automatically open the preview window after entering a Markdown buffer

+ +

Type: +boolean

+ +

Default: +false

+ +

Declared by:

+ + +
+ +<neovim-flake/modules/utility/preview/markdown-preview/markdown-preview.nix> + +
+
+
+ + vim.utility.preview.markdownPreview.broadcastServer + + +
+
+

Allow for outside and network wide connections

+ +

Type: +boolean

+ +

Default: +false

+ +

Declared by:

+ + +
+ +<neovim-flake/modules/utility/preview/markdown-preview/markdown-preview.nix> + +
+
+
+ + vim.utility.preview.markdownPreview.customIP + + +
+
+

IP-address to use

+ +

Type: +string

+ +

Default: +""

+ +

Declared by:

+ + +
+ +<neovim-flake/modules/utility/preview/markdown-preview/markdown-preview.nix> + +
+
+
+ + vim.utility.preview.markdownPreview.customPort + + +
+
+

Port to use

+ +

Type: +string

+ +

Default: +""

+ +

Declared by:

+ + +
+ +<neovim-flake/modules/utility/preview/markdown-preview/markdown-preview.nix> + +
+
+
+ + vim.utility.preview.markdownPreview.filetypes + + +
+
+

Allowed filetypes

+ +

Type: +list of string

+ +

Default:

[
+  "markdown"
+]
+
+ +

Declared by:

+ + +
+ +<neovim-flake/modules/utility/preview/markdown-preview/markdown-preview.nix> + +
+
+
+ + vim.utility.preview.markdownPreview.lazyRefresh + + +
+
+

Only update preview when saving or leaving insert mode

+ +

Type: +boolean

+ +

Default: +false

+ +

Declared by:

+ + +
+ +<neovim-flake/modules/utility/preview/markdown-preview/markdown-preview.nix> + +
+
vim.utility.surround.enable diff --git a/release-notes.html b/release-notes.html index df6a2ff..8752c9c 100644 --- a/release-notes.html +++ b/release-notes.html @@ -89,7 +89,7 @@ formatting changes, along with better source links.”

  • attrsOf str to attrsOf (listOf str)

  • Added statusline.lualine.extraActiveSection and statusline.lualine.extraInactiveSection

  • -

    Release 0.6

    Table of Contents

    Changelog

    Release notes for release 0.6

    Changelog

    ksonj:

    • Add Terraform language support

    horriblename:

    • Fixed empty winbar when breadcrumbs are disabled

    donnerinoern:

    • Added Gruvbox theme

    • Added marksman LSP for Markdown

    • Fixed markdown preview with Glow not working and added an option for changing the preview keybind

    • colorizer.nvim: switched to a maintained fork

    notashelf:

    • Finished moving to nixosOptionsDoc in the documentation and changelog. We are fully free of asciidoc now

    • Bumped plugin inputs to their latest versions

    • Deprecated presence.nvim in favor of neocord. This means vim.rich-presence.presence-nvim is removed and will throw +

    Release 0.6

    Table of Contents

    Changelog

    Release notes for release 0.6

    Changelog

    ksonj:

    • Add Terraform language support

    horriblename:

    • Fixed empty winbar when breadcrumbs are disabled

    donnerinoern:

    • Added Gruvbox theme

    • Added marksman LSP for Markdown

    • Fixed markdown preview with Glow not working and added an option for changing the preview keybind

    • colorizer.nvim: switched to a maintained fork

    • Added markdown-preview.nvim, moved glow.nvim to a brand new vim.utility.preview category.

    notashelf:

    • Finished moving to nixosOptionsDoc in the documentation and changelog. We are fully free of asciidoc now

    • Bumped plugin inputs to their latest versions

    • Deprecated presence.nvim in favor of neocord. This means vim.rich-presence.presence-nvim is removed and will throw a warning if used. You are recommended to rewrite your neocord config from scratch based on the official documentation

    • Added support for css and tailwindcss through vscode-language-servers-extracted & tailwind-language-server. Those can be enabled through vim.languages.css and vim.languages.tailwind

    • Lualine module now allows customizing always_divide_middle, ignore_focus and disabled_filetypes through the new