My own first version of kickstart.nvim

This commit is contained in:
AngryLuck 2024-03-19 18:01:42 +01:00
parent 3668af39f4
commit dc41cd1fc2
16 changed files with 305 additions and 93 deletions

View file

@ -0,0 +1,14 @@
return {
"aperezdc/vim-template",
-- Change init to config, and then tell when to load
-- config only works for lua modules that are "required" by nvim.
init = function()
vim.g.templates_directory = "~/documents/latex-templates/"
vim.g.templates_no_builtin_templates = true
vim.g.templates_global_name_prefix = "template:"
vim.g.templates_name_prefix = "template:"
vim.g.templates_no_autocmd = true
-- vim.cmd("let g:templates_no_autocmd=1")
end,
-- cmd = "Template",
}