mirror of
https://github.com/don-philipe/dotfiles.git
synced 2025-11-08 22:57:03 +01:00
Add neovim config with some plugins
This commit is contained in:
13
.config/nvim/lua/plugins/gen.lua
Normal file
13
.config/nvim/lua/plugins/gen.lua
Normal file
@@ -0,0 +1,13 @@
|
||||
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"],
|
||||
}},
|
||||
}
|
||||
Reference in New Issue
Block a user