mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -07:00
b3e0457403
runtime(sshdconfig): add basic ftplugin file for sshdconfig (vim/vim#14790)
cf78d0df51
Co-authored-by: Yinzuo Jiang <jiangyinzuo@foxmail.com>
11 lines
240 B
VimL
11 lines
240 B
VimL
" Vim filetype plugin file
|
|
" Language: OpenSSH server configuration file
|
|
" Maintainer: Yinzuo Jiang <jiangyinzuo@foxmail.com>
|
|
" Latest Revision: 2024-05-17
|
|
|
|
if exists("b:did_ftplugin")
|
|
finish
|
|
endif
|
|
|
|
runtime! ftplugin/conf.vim
|