plugins - Jinja2, C++, GLSL and JSON

This commit is contained in:
Emmanuel BENOîT 2023-06-24 16:12:34 +02:00
parent 71813ad886
commit 2b530d5e56
No known key found for this signature in database
GPG key ID: 2356DC6956CF54EF
8 changed files with 19 additions and 4 deletions

View file

@ -1 +0,0 @@
NeoBundle 'Glench/Vim-Jinja2-Syntax'

View file

@ -1 +0,0 @@
NeoBundle 'octol/vim-cpp-enhanced-highlight'

View file

@ -1 +0,0 @@
NeoBundle 'tikhomirov/vim-glsl'

View file

@ -1 +0,0 @@
NeoBundle 'elzr/vim-json'

5
plugins/jinja2.load.vim Normal file
View file

@ -0,0 +1,5 @@
call dein#add('Glench/Vim-Jinja2-Syntax', #{
\ lazy: 1,
\ merge_ftdetect: v:true,
\ on_ft: ['jinja'],
\ })

View file

@ -0,0 +1,4 @@
call dein#add('octol/vim-cpp-enhanced-highlight', #{
\ lazy: 1,
\ on_ft: ['cpp'],
\ })

View file

@ -0,0 +1,5 @@
call dein#add('tikhomirov/vim-glsl', #{
\ lazy: 1,
\ merge_ftdetect: v:true,
\ on_ft: ['glsl', 'html'],
\ })

View file

@ -0,0 +1,5 @@
call dein#add('elzr/vim-json', #{
\ lazy: 1,
\ merge_ftdetect: v:true,
\ on_ft: ['json'],
\ })