mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-27 06:05:43 +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
|
# Indentation
|
||||||
autoindent = true;
|
autoindent = true;
|
||||||
tabstop = 4;
|
tabstop = 4;
|
||||||
|
@ -69,7 +69,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
options = {
|
opts = {
|
||||||
number = true;
|
number = true;
|
||||||
shiftwidth = 2;
|
shiftwidth = 2;
|
||||||
tabstop = 2;
|
tabstop = 2;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
example = {
|
example = {
|
||||||
options.termguicolors = true;
|
opts.termguicolors = true;
|
||||||
|
|
||||||
highlight = {
|
highlight = {
|
||||||
MacchiatoRed.fg = "#ed8796";
|
MacchiatoRed.fg = "#ed8796";
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
options = {
|
opts = {
|
||||||
updatetime = 100; # Faster completion
|
updatetime = 100; # Faster completion
|
||||||
|
|
||||||
# Line numbers
|
# Line numbers
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue