nvim/lua/nthobaben/color.lua

16 lines
409 B
Lua

require('onedark').setup{
style = 'warm',
toggle_style_key = '<leader>zz',
toggle_style_list = { 'dark', 'light' },
transparent = false,
}
require('onedark').load()
-- Making the background transparent
-- Guake doen't seem to like it tho and only half the screen is transparent
--vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
--vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })