mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-25 21:24:59 +02:00
tests: fix occurences of deprecated "options" option
This commit is contained in:
parent
0f6d44503b
commit
c706207007
3 changed files with 4 additions and 4 deletions
|
@ -38,7 +38,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
options = {
|
||||
opts = {
|
||||
# Indentation
|
||||
autoindent = true;
|
||||
tabstop = 4;
|
||||
|
@ -69,7 +69,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
options = {
|
||||
opts = {
|
||||
number = true;
|
||||
shiftwidth = 2;
|
||||
tabstop = 2;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
example = {
|
||||
options.termguicolors = true;
|
||||
opts.termguicolors = true;
|
||||
|
||||
highlight = {
|
||||
MacchiatoRed.fg = "#ed8796";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
options = {
|
||||
options = {
|
||||
opts = {
|
||||
updatetime = 100; # Faster completion
|
||||
|
||||
# Line numbers
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue