kickstart.nvim/lua/custom/plugins/tune.lua

10 lines
169 B
Lua
Raw Normal View History

2023-05-28 08:16:33 +02:00
return {
2023-12-19 19:24:51 +01:00
'thomasmarcel/tune.nvim',
2023-05-28 08:16:33 +02:00
config = function()
2023-12-19 19:24:51 +01:00
local tune = require 'tune'
tune.setup()
tune.pick_random_colorscheme()
2023-05-28 08:16:33 +02:00
end,
2023-12-19 19:24:51 +01:00
priority = 10,
2023-05-28 08:16:33 +02:00
}