mirror of
https://github.com/neovim/neovim.git
synced 2026-05-06 08:26:45 -04:00
b4274b73f3
closes: vim/vim#19545 https://github.com/vim/vim/commit/99ba87d152a93d994eb052ba1cfc39e55ac46421 Co-authored-by: Riley Bruins <ribru17@hotmail.com>
14 lines
260 B
VimL
14 lines
260 B
VimL
" Vim filetype plugin
|
|
" Language: nickel
|
|
" Maintainer: Riley Bruins <ribru17@gmail.com>
|
|
" Last Change: 2026 Mar 01
|
|
|
|
if exists('b:did_ftplugin')
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
setl comments=:# commentstring=#\ %s
|
|
|
|
let b:undo_ftplugin = 'setl com< cms<'
|