mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-16 15:33:49 -05:00
Add all vim filetypes
This commit is contained in:
19
ftplugin/jproperties.vim
Normal file
19
ftplugin/jproperties.vim
Normal file
@@ -0,0 +1,19 @@
|
||||
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'jproperties') == -1
|
||||
|
||||
" Vim filetype plugin
|
||||
" Language: Java properties file
|
||||
" Maintainer: None
|
||||
" Last Change: 2019 Dec 01
|
||||
|
||||
if exists("b:did_ftplugin")
|
||||
finish
|
||||
endif
|
||||
let b:did_ftplugin = 1
|
||||
|
||||
setlocal formatoptions-=t
|
||||
setlocal comments=:#,:!
|
||||
setlocal commentstring=#\ %s
|
||||
|
||||
let b:undo_ftplugin = "setl cms< com< fo<"
|
||||
|
||||
endif
|
||||
Reference in New Issue
Block a user