vim: collect syntax-only plugins into a syntax file
This commit is contained in:
parent
335884af95
commit
fe5eddd739
4 changed files with 7 additions and 18 deletions
|
@ -1,6 +0,0 @@
|
||||||
local M = { 'mityu/vim-applescript' }
|
|
||||||
|
|
||||||
M.ft = 'applescript'
|
|
||||||
|
|
||||||
return M
|
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
local M = { 'chr4/nginx.vim' }
|
|
||||||
|
|
||||||
M.ft = 'nginx'
|
|
||||||
|
|
||||||
return M
|
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
local M = { 'keith/swift.vim' }
|
|
||||||
|
|
||||||
M.ft = 'swift'
|
|
||||||
|
|
||||||
return M
|
|
||||||
|
|
7
config/nvim/lua/fschauen/plugins/syntax.lua
Normal file
7
config/nvim/lua/fschauen/plugins/syntax.lua
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
return {
|
||||||
|
{ 'mityu/vim-applescript', ft = 'applescript' },
|
||||||
|
{ 'chr4/nginx.vim', ft = 'nginx' },
|
||||||
|
{ 'keith/swift.vim', ft = 'swift'},
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue