Vim support for UCL (Universal Configuration Language) files, including syntax highlighting and indentation.
Plug 'owallb/vim-ucl'
{
'owallb/vim-ucl',
}
Copy the contents of this repository into your ~/.vim directory (or %USERPROFILE%\vimfiles on Windows).
By default, this plugin will be activated for files with the .ucl
extension. If you use UCL files with different extensions, you have several options:
Add this to your vimrc:
autocmd BufNewFile,BufRead *.conf setfiletype ucl
Add one of these lines near the start or end of your UCL file:
# vim: ft=ucl
or
/* vim: set ft=ucl: */
The plugin has one configuration option:
" Disable syntax folding (enabled by default)
let g:ucl_fold = 0
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the BSD 3-Clause License - see the LICENSE file for details.