mirror of
https://github.com/don-philipe/dotfiles.git
synced 2025-11-08 22:57:03 +01:00
14 lines
276 B
Lua
14 lines
276 B
Lua
|
|
local ok, vars = pcall(require, 'config.gen-private')
|
||
|
|
if not ok then
|
||
|
|
print("Missing gen-private configuration file.")
|
||
|
|
end
|
||
|
|
|
||
|
|
return {
|
||
|
|
{ "David-Kunz/gen.nvim",
|
||
|
|
opts = {
|
||
|
|
model = vars["model"],
|
||
|
|
host = vars["host"],
|
||
|
|
port = vars["port"],
|
||
|
|
}},
|
||
|
|
}
|