Neovim setup#
Contents:
An excellent lua crash course for Neovim is TJ’s YouTube video
“Everything You Need To Start Writing Lua”.
In Neovim, the lua scripting API consists of 3 layers
The “Vim API”, inherited from Vim.
These are accessed through vim.cmd and
vim.fnrespectively.
The “Lua API” written in and specifically for Lua. These are any other functions accessible through
vim.*not mentioned already. See lua-stdlib for more.
Hello