nvim/lua/plugins/text-to-color.lua
2023-06-19 11:54:57 +02:00

13 lines
295 B
Lua

return {
'svermeulen/text-to-colorscheme',
dependencies = { 'tsuyoshicho/vim-pass' },
config = function ()
require('text-to-colorscheme').setup {
ai = {
gpt_model = "gpt-3.5-turbo",
openai_api_key = vim.fn['pass#get']('apikeys/openai_vim'),
},
}
end
}