A minimal dark colorscheme for Neovim. No dependencies.
With lazy.nvim:
{
'tstelzer/kauz.nvim',
config = function()
require('kauz').setup()
end,
}Enable treesitter highlighting for all filetypes with an installed parser:
vim.api.nvim_create_autocmd('FileType', {
callback = function() pcall(vim.treesitter.start) end,
})The theme is picked up automatically when colors_name is set. No explicit configuration needed.