You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kickstart.nvim/lua/custom/plugins/nvim-base16.lua

11 lines
206 B
Lua

return {
'norcalli/nvim-base16.lua',
lazy = false,
priority = 1000,
config = function()
local base16 = require 'base16'
base16(base16.themes[vim.env.BASE16_THEME or "3024"], true)
end,
}