|
@@ -25330,7 +25346,7 @@ boolean
The border style to use for the code-actions-menu plugin
Type:
-one of “none”, “single”, “double”, “rounded”, “shadow”
+one of “none”, “single”, “double”, “rounded”, “solid”, “shadow” or list of (string or list of string)
Default:
"rounded"
@@ -25381,7 +25397,7 @@ boolean
The border style to use for the lsp-signature plugin
Type:
-one of “none”, “single”, “double”, “rounded”, “shadow”
+one of “none”, “single”, “double”, “rounded”, “solid”, “shadow” or list of (string or list of string)
Default:
"rounded"
@@ -25432,7 +25448,7 @@ boolean
The border style to use for the lspsaga plugin
Type:
-one of “none”, “single”, “double”, “rounded”, “shadow”
+one of “none”, “single”, “double”, “rounded”, “solid”, “shadow” or list of (string or list of string)
Default:
"rounded"
@@ -25483,7 +25499,7 @@ boolean
The border style to use for the nvim-cmp plugin
Type:
-one of “none”, “single”, “double”, “rounded”, “shadow”
+one of “none”, “single”, “double”, “rounded”, “solid”, “shadow” or list of (string or list of string)
Default:
"rounded"
@@ -25534,7 +25550,7 @@ boolean
The border style to use for the which-key plugin
Type:
-one of “none”, “single”, “double”, “rounded”
+one of “none”, “single”, “double”, “rounded”, “solid”, “shadow” or list of (string or list of string)
Default:
"rounded"
@@ -25577,12 +25593,15 @@ boolean
- vim.ui.breadcrumbs.alwaysRender
+ vim.ui.breadcrumbs.lualine.winbar.enable
-Whether to always display the breadcrumbs component on winbar (always renders winbar)
+Whether to automatically configure a winbar component for
+Lualine on the Winbar section. NoteThis is set to true by default, which means nvim-navic
+will occupy winbar.lualine_c for the breadcrumbs feature
+unless this option is set to false.
Type:
boolean
@@ -25590,6 +25609,39 @@ boolean
Default:
true
+Example:
+false
+
+Declared by:
+
+
+
+
+ vim.ui.breadcrumbs.lualine.winbar.alwaysRender
+
+
+
+
+Whether to always display the breadcrumbs component
+on winbar. NoteThis will pass draw_empty to the nvim_navic winbar
+component, which causes the component to be drawn even
+if it’s empty
+
+Type:
+boolean
+
+Default:
+true
+
+Example:
+false
+
Declared by:
|
@@ -27070,7 +27122,7 @@ boolean
border style to use
Type:
-one of “single”, “rounded”, “double”, “solid”, “none”
+one of “none”, “single”, “double”, “rounded”, “solid”, “shadow” or list of (string or list of string)
Default:
"rounded"
@@ -27118,7 +27170,7 @@ null or signed integer
border style to use for the left section of Navbuddy UI
Type:
-null or one of “single”, “rounded”, “double”, “solid”, “none”
+one of “none”, “single”, “double”, “rounded”, “solid”, “shadow” or list of (string or list of string)
Default:
"rounded"
@@ -27142,7 +27194,7 @@ null or one of “single”, “rounded”, “double”, “solid”, “none
border style to use for the middle section of Navbuddy UI
Type:
-null or one of “single”, “rounded”, “double”, “solid”, “none”
+one of “none”, “single”, “double”, “rounded”, “solid”, “shadow” or list of (string or list of string)
Default:
"rounded"
@@ -27166,7 +27218,7 @@ null or one of “single”, “rounded”, “double”, “solid”, “none
border style to use for the right section of Navbuddy UI
Type:
-null or one of “single”, “rounded”, “double”, “solid”, “none”
+one of “none”, “single”, “double”, “rounded”, “solid”, “shadow” or list of (string or list of string)
Default:
"rounded"
@@ -31370,7 +31422,7 @@ one of “top”, “bottom”
Border style of the notification window
Type:
-one of “none”, “single”, “double”, “rounded”, “solid”, “shadow”
+one of “none”, “single”, “double”, “rounded”, “solid”, “shadow” or list of (string or list of string)
Default:
"none"
diff --git a/release-notes.html b/release-notes.html
index eb527090..6a7e2dfa 100644
--- a/release-notes.html
+++ b/release-notes.html
@@ -158,10 +158,11 @@ will enable the typst-lsp language server, and the
group for Normal, NormalFloat, LineNr, SignColumn and optionally
NvimTreeNormal to none.Fix vim.ui.smartcolumn.setupOpts.custom_colorcolumn using the wrong
type int instead of the expected type string. 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. Add dap-go for better dap configurations Make noice.nvim customizable
Switch from rust-tools.nvim to the more feature-packed rustaceanvim. This
+longer filtered and thus should be used instead. Add dap-go for better dap configurations Make noice.nvim customizable Standardize border style options and add custom borders
jacekpoz: diniamo: Move the theme dag entry to before luaScript. Add rustfmt as the default formatter for Rust. Enabled the terminal integration of catppuccin for theming Neovim’s built-in
+features and usage
jacekpoz: diniamo: Move the theme dag entry to before luaScript. Add rustfmt as the default formatter for Rust. Enabled the terminal integration of catppuccin for theming Neovim’s built-in
terminal (this also affects toggleterm). Migrate bufferline to setupOpts for more customizability Use clangd as the default language server for C languages Expose lib.nvim.types.pluginType, which for example allows the user to
create abstractions for adding plugins Migrate indent-blankline to setupOpts for more customizability. While the
plugin’s options can now be found under indentBlankline.setupOpts, the
@@ -190,7 +191,13 @@ under vim.filetree.neo-tree, similar to nvimtree.
closure. Both of those scripts have been automatically added to your PATH upon
using neovimConfig or programs.nvf.enable. nvf-print-config will display your init.lua, in full.
nvf-print-config-path will display the path to a clone of your
init.lua. This is not the path used by the Neovim wrapper, but an
-identical clone.
ppenguin:
+identical clone.Add vim.ui.breadcrumbs.lualine to allow fine-tuning breadcrumbs behaviour on
+Lualine. Only vim.ui.breadcrumbs.lualine.winbar is supported for the time
+being. ppenguin:
| |