How I can a command at startup? #830
-
I would like to run the command:
when nvim startup. How can I do this? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
you can set a vim option via the nix option if you want to run arbitrary vimscript code, you'll have to run it with the lua function |
Beta Was this translation helpful? Give feedback.
-
It is I was looking for "background" in the doc. This is why I was unable to find it. |
Beta Was this translation helpful? Give feedback.
It is
vim.options.background = "light"
. The 's' was missing at'option'
.I was looking for "background" in the doc. This is why I was unable to find it.