nvim: Use { 'for': 'filetype' } for filetype plugins

Even though I know that some of them only loads upon ftplugin so this is
kinda useless.
This commit is contained in:
Hedy Li 2021-09-29 14:17:21 +08:00
parent 218476c70a
commit c8fa05b31a
Signed by: hedy
GPG Key ID: B51B5A8D1B176372
1 changed files with 6 additions and 6 deletions

View File

@ -52,12 +52,12 @@ Plug 'majutsushi/tagbar' " Quickly jump to a symbol in buffer (one of my
" === File type, syntax, or language helper plugins ===
" gemtext syntax highlighting; I know there are more popular alternatives but
" this is the best IMO
Plug 'https://git.sr.ht/~torresjrjr/gemini.vim'
Plug 'cespare/vim-toml'
Plug 'blankname/vim-fish'
Plug 'hedyhli/vim-bun'
Plug 'https://git.rawtext.club/slope-lang/slope-vim-syntax'
Plug 'mzlogin/vim-markdown-toc'
Plug 'https://git.sr.ht/~torresjrjr/gemini.vim' , { 'for': 'gemini' }
Plug 'cespare/vim-toml' , { 'for': 'toml' }
Plug 'blankname/vim-fish' , { 'for': 'fish' }
Plug 'hedyhli/vim-bun' , { 'for': 'bun' }
Plug 'https://git.rawtext.club/slope-lang/slope-vim-syntax' , { 'for': 'slope' }
Plug 'mzlogin/vim-markdown-toc' , { 'for': 'markdown' }
call plug#end()
" Plugin declarations ends here