Coding workspace
March 16, 2023 tutorial

Set color scheme in Neovim (Lua)

To set a color scheme in Neovim using Lua add the following line to the init.lua file

vim.cmd [[colorscheme onedark]]

In the example above, I use Onedark as the color scheme, but you can use whatever you like.

https://darryldias.me/2023/kickstart-neovim-on-linux/

Comments