Compare commits

..

2 commits

Author SHA1 Message Date
raf
2ff1ad29f9
Merge 11bab699a8 into 3b6b6e7322 2024-12-01 15:04:19 +00:00
11bab699a8
docs: update changelogs 2024-12-01 18:04:11 +03:00
2 changed files with 4 additions and 3 deletions

View file

@ -312,6 +312,9 @@ it to something other than `mapleader` to avoid conflicts.
`cursorlineOpt`, `splitBelow`, `splitRight`, `autoIndent` and `wordWrap`
have been mapped to their [](#opt-vim.options) equivalents. Please see the
module definition for the updated options.
- `tabWidth` has been **removed** as it lead to confusing behaviour. You can
replicate the same functionality via `shiftwidth`, `tabstop` and
`softtabstop` as you see fit.
[ppenguin](https://github.com/ppenguin):

View file

@ -3,7 +3,7 @@
inherit (lib.lists) concatLists;
inherit (lib.nvim.config) batchRenameOptions;
migrationTable = {
renamedVimOpts = batchRenameOptions ["vim"] ["vim" "options"] {
colourTerm = "termguicolors";
mouseSupport = "mouse";
cmdHeight = "cmdheight";
@ -15,8 +15,6 @@
autoIndent = "autoindent";
wordWrap = "wrap";
};
renamedVimOpts = batchRenameOptions ["vim"] ["vim" "options"] migrationTable;
in {
imports = concatLists [
[