diff --git a/options.html b/options.html index 49a61886..fd21e9e6 100644 --- a/options.html +++ b/options.html @@ -26696,16 +26696,16 @@ null or string or list of string

The position at which smart column should be displayed for each individual buffer type

Type: -attribute set of (signed integer or list of signed integer)

+attribute set of (string or list of string)

Default: { }

Example:

vim.ui.smartcolumn.setupOpts.custom_colorcolumn = {
-  nix = 110;
-  ruby = 120;
-  java = 130;
-  go = [90 130];
+  nix = "110";
+  ruby = "120";
+  java = "130";
+  go = ["90" "130"];
 };
 
 
diff --git a/release-notes.html b/release-notes.html index 29036726..e91c5e88 100644 --- a/release-notes.html +++ b/release-notes.html @@ -142,12 +142,13 @@ nvim-notify documentation.

Release 0.7

Table of Contents

Changelog

Release notes for release 0.7

Changelog

ItsSorae:

  • Add support for typst under vim.languages.typst This -will enable the typst-lsp language server, and the typstfmt formatter

frothymarrow:

  • Modified type for -vim.visuals.fidget-nvim.setupOpts.progress.display.overrides from -anything to a submodule for better type checking.

  • Fix null vim.lsp.mappings generating an error and not being filtered out.

  • Add basic transparency support for oxocarbon theme by setting the highlight +will enable the typst-lsp language server, and the typstfmt formatter

frothymarrow:

  • Modified type for +vim.visuals.fidget-nvim.setupOpts.progress.display.overrides +from anything to a submodule for better type checking.

  • Fix null vim.lsp.mappings generating an error and not being filtered out.

  • Add basic transparency support for oxocarbon theme by setting the highlight group for Normal, NormalFloat, LineNr, SignColumn and optionally -NvimTreeNormal to none.

horriblename:

  • Fix broken treesitter-context keybinds in visual mode

  • Deprecate use of __empty to define empty tables in lua. Empty attrset are no -longer filtered and thus should be used instead.

jacekpoz:

diniamo:

  • Move the theme dag entry to before luaScript.

  • Add rustfmt as the default formatter for Rust

NotAShelf

horriblename:

  • Fix broken treesitter-context keybinds in visual mode

  • Deprecate use of __empty to define empty tables in lua. Empty attrset are no +longer filtered and thus should be used instead.

jacekpoz:

diniamo:

  • Move the theme dag entry to before luaScript.

  • Add rustfmt as the default formatter for Rust

NotAShelf:

  • Add deno fmt as the default Markdown formatter. This will be enabled automatically if you have autoformatting enabled, but can be disabled manually if you choose to.

  • Add vim.extraLuaFiles for optionally sourcing additional lua files in your configuration.

  • Refactor programs.languages.elixir to use lspconfig and none-ls for LSP and