vim: collect syntax-only plugins into a syntax file

This commit is contained in:
Fernando Schauenburg 2024-02-18 13:52:14 +01:00
parent 335884af95
commit fe5eddd739
4 changed files with 7 additions and 18 deletions

View file

@ -1,6 +0,0 @@
local M = { 'mityu/vim-applescript' }
M.ft = 'applescript'
return M

View file

@ -1,6 +0,0 @@
local M = { 'chr4/nginx.vim' }
M.ft = 'nginx'
return M

View file

@ -1,6 +0,0 @@
local M = { 'keith/swift.vim' }
M.ft = 'swift'
return M

View file

@ -0,0 +1,7 @@
return {
{ 'mityu/vim-applescript', ft = 'applescript' },
{ 'chr4/nginx.vim', ft = 'nginx' },
{ 'keith/swift.vim', ft = 'swift'},
}