mirror of
https://github.com/neovim/neovim.git
synced 2026-05-06 16:29:57 -04:00
91fa613fad
See: https://github.com/elkasztano/nushell-syntax-vim Thanks to Pete Cruz (@Petesta) for promoting this addition. closes: vim/vim#18208 https://github.com/vim/vim/commit/6505dc69d3a663448045d653112aa52e74894327 Co-authored-by: Doug Kearns <dougkearns@gmail.com>
18 lines
398 B
VimL
18 lines
398 B
VimL
" Vim filetype plugin
|
|
" Language: Nushell
|
|
" Maintainer: El Kasztano
|
|
" URL: https://github.com/elkasztano/nushell-syntax-vim
|
|
" License: MIT <https://opensource.org/license/mit>
|
|
" Last Change: 2025 Sep 05
|
|
|
|
if exists("b:did_ftplugin")
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
setlocal commentstring=#\ %s
|
|
setlocal comments-=://
|
|
setlocal formatoptions=tcroql
|
|
|
|
let b:undo_ftplugin = "setl fo< cms< com<"
|