From 8f76da46cb2bec716af89bb7b838962727ef2e17 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sun, 1 Dec 2024 10:13:35 +0300 Subject: [PATCH] docs: update changelogs --- docs/release-notes/rl-0.4.md | 2 +- docs/release-notes/rl-0.7.md | 17 +++++++++++++---- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/docs/release-notes/rl-0.4.md b/docs/release-notes/rl-0.4.md index ad3cc4d..f5c2c33 100644 --- a/docs/release-notes/rl-0.4.md +++ b/docs/release-notes/rl-0.4.md @@ -49,7 +49,7 @@ absence. - Made Copilot's Node package configurable. It is recommended to keep as default, but providing a different NodeJS version is now possible. -- Added [](#opt-vim.cursorlineOpt) for configuring Neovim's cursorlineOpt. +- Added `vim.cursorlineOpt` for configuring Neovim's `vim.o.cursorlineopt`. - Added `filetree.nvimTreeLua.view.cursorline`, default false, to enable cursorline in nvimtre. diff --git a/docs/release-notes/rl-0.7.md b/docs/release-notes/rl-0.7.md index 8dcfc5b..e7a887a 100644 --- a/docs/release-notes/rl-0.7.md +++ b/docs/release-notes/rl-0.7.md @@ -133,10 +133,10 @@ it to something other than `mapleader` to avoid conflicts. recommended to go through rustacean.nvim's README to take a closer look at its features and usage -- Add [lz.n] support and lazy-load some builtin plugins. - [lz.n]: https://github.com/mrcjkb/lz.n +- Add [lz.n] support and lazy-load some builtin plugins. + [jacekpoz](https://jacekpoz.pl): [ocaml-lsp]: https://github.com/ocaml/ocaml-lsp @@ -300,17 +300,26 @@ it to something other than `mapleader` to avoid conflicts. spellfiles to Neovim's runtime with ease. - Add combined nvf configuration (`config.vim`) into the final package's - passthru as `passthru.neovimConfiguration` for easier debugging. + `passthru` as `passthru.neovimConfiguration` for easier debugging. - Add support for [tiny-devicons-auto-colors] under `vim.visuals.tiny-devicons-auto-colors` +- Move options that used to set `vim.o` values (e.g. `vim.wordWrap`) into + `vim.options` as default values. Some are left as they don't have a direct + equivalent, but expect a switch eventually. + - `colourTerm`, `mouseSupport`, `cmdHeight`, `updateTime`, `mapTime`, + `cursorlineOpt`, `splitBelow`, `splitRight`, `autoIndent` and `wordWrap` + have been mapped to their [](#opt-vim.options) equivalents. Please see the + module definition for the updated options. + [ppenguin](https://github.com/ppenguin): - Telescope: - Fixed `project-nvim` command and keybinding - Added default ikeybind/command for `Telescope resume` (`fr`) -- Add `hcl` lsp/formatter (not the same as `terraform`, which is not useful for e.g. `nomad` config files). +- Add `hcl` lsp/formatter (not the same as `terraform`, which is not useful for + e.g. `nomad` config files). [Soliprem](https://github.com/Soliprem):