mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-02-04 06:19:48 +01:00
Compare commits
2 commits
1bfa2f43e0
...
2ff1ad29f9
Author | SHA1 | Date | |
---|---|---|---|
2ff1ad29f9 | |||
11bab699a8 |
2 changed files with 4 additions and 3 deletions
|
@ -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):
|
||||
|
||||
|
|
|
@ -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 [
|
||||
[
|
||||
|
|
Loading…
Reference in a new issue