Refactor neovim config file structure
All plugins are now in their own files with their lazy specifications and configurations. Also moved lazy initialization to init.lua because it is very compact now
This commit is contained in:
parent
94244ca95c
commit
f44e0b3274
36 changed files with 554 additions and 584 deletions
13
home/.config/nvim/lua/plugins/asciidoc.lua
Normal file
13
home/.config/nvim/lua/plugins/asciidoc.lua
Normal file
|
@ -0,0 +1,13 @@
|
|||
-- AsciiDoc plugins are grouped together here
|
||||
return {
|
||||
-- Vim ♥️ Asciidoctor
|
||||
{
|
||||
"habamax/vim-asciidoctor",
|
||||
ft = { "asciidoctor", "asciidoc" },
|
||||
},
|
||||
-- AsciiDoc preview
|
||||
{
|
||||
"tigion/nvim-asciidoc-preview",
|
||||
ft = { "asciidoctor", "asciidoc" },
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue