kickstart.nvim/lua/custom/plugins/tune.lua
Thomas Alcala Schneider e4042a3562 feat: add tune
2023-12-19 19:24:51 +01:00

9 lines
169 B
Lua

return {
'thomasmarcel/tune.nvim',
config = function()
local tune = require 'tune'
tune.setup()
tune.pick_random_colorscheme()
end,
priority = 10,
}