neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

nu.vim (398B)


      1 " Vim filetype plugin
      2 " Language:	Nushell
      3 " Maintainer:	El Kasztano
      4 " URL:		https://github.com/elkasztano/nushell-syntax-vim
      5 " License:	MIT <https://opensource.org/license/mit>
      6 " Last Change:	2025 Sep 05
      7 
      8 if exists("b:did_ftplugin")
      9  finish
     10 endif
     11 let b:did_ftplugin = 1
     12 
     13 setlocal commentstring=#\ %s
     14 setlocal comments-=://
     15 setlocal formatoptions=tcroql
     16 
     17 let b:undo_ftplugin = "setl fo< cms< com<"