kickstart.nvim/lua/vatsal/plugins/colorbuddy.lua
rajvatsal 47b7622fe7 feat(vatsal): Create new config vatsal
kickstart folder contains the original init.lua file. Current init.lua
gets it's config from lua.vatsal.plugins which what I created to
modularize the code and enable lazy loading.

Init to lua now loads all the plugins from vatsal.plugins
2024-01-10 15:20:47 +05:30

9 lines
517 B
Lua

return {
'tjdevries/colorbuddy.nvim',
config = function()
-- local Color, colors, Group, groups, styles = require('colorbuddy').setup()
-- Pallet: https://base16.vercel.app/previews/base16-twilight
-- https://github.com/goolord/alpha-nvim/discussions/16#:~:text=I%27m%20not%20quite%20satisfied%20with%20the%20layout%20yet%2C%20I%20started%20out%20with%20some%20colours%20but%20ended%20up%20omitting%20them%20for%20simplicity.%20Here%27s%20what%20it%20looks%20like%20so%20far%3A
end,
lazy = true
}