-
My config looks like this programs.nvf = {
enable = true;
...
settings = {
vim = {
tabstop = 2;
softtab = -1;
shiftwidth = 0;
shiftround = true;
expandtab = true;
autoindent = true;
};
};
}; The error is: and Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
settings.vim
is actually the top-level attribute set for everything nvf, so it's not freeform. You are looking forvim.options
, which maps options passed to it tovim.o
.