Kristian Krsnik
a2cd8d467f
* laptop, pc and common now live in systems * new dev shell to run dconf2nix * New dconf weather entry (currently not functional)
12 lines
275 B
Lua
12 lines
275 B
Lua
require('tokyonight').setup({style = 'moon',})
|
|
|
|
function ColorMyPencils(color)
|
|
color = color or 'tokyonight'
|
|
vim.cmd.colorscheme(color)
|
|
|
|
vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' })
|
|
vim.api.nvim_set_hl(0, 'NormalFloat', { bg = 'none' })
|
|
end
|
|
|
|
ColorMyPencils()
|