Files
vim-polyglot/ftplugin/docker-compose.vim
Adam Stankiewicz af3ebda710 Fix tests
2020-10-17 14:17:55 +02:00

10 lines
215 B
VimL

if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'docker-compose') == -1
" Define comment string
setlocal commentstring=#\ %s
" Enable automatic comment insertion
setlocal formatoptions+=cro
endif