Moved configs to seperate files
This commit is contained in:
parent
fdb565ce87
commit
3b96ad1b57
26 changed files with 578 additions and 229 deletions
14
lua/angryluck/plugins/vim-template.lua
Normal file
14
lua/angryluck/plugins/vim-template.lua
Normal 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",
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue