A custom colour scheme for Neovim heavily inspired by default dark theme of Vim
This theme was developed using an amazing template by datsfilipe. Some adjustments were made, nevertheless most of the code follows the examples provided in the repository, thus all credit goes to the author.
use {
'squalorware/nvim-guizi.lua',
}
Plug 'squalorware/nvim-guizi.lua'
return {
-- Other modules configuration...
"squalorware/nvim-guizi.lua",
require("guizi").setup({
theme = "dark",
transparent = true,
italics = {
comments = true,
keywords = false,
functions = false,
strings = false,
variables = false,
},
})
}
Then, in your main configuration file (i.e. $CONFIG_HOME/init.lua
) simply add
local theme = require("guizi")
theme.colorscheme()