Files
org-vim/runtime/ftplugin/nu.vim
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
398 B
VimL
Raw Normal View History

2024-09-01 09:21:16 +02:00
" Vim filetype plugin
2025-09-06 19:31:00 +02:00
" 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
2024-09-01 09:21:16 +02:00
2025-09-06 19:31:00 +02:00
if exists("b:did_ftplugin")
2024-09-01 09:21:16 +02:00
finish
endif
let b:did_ftplugin = 1
setlocal commentstring=#\ %s
2025-09-06 19:31:00 +02:00
setlocal comments-=://
setlocal formatoptions=tcroql
2024-09-01 09:21:16 +02:00
2025-09-06 19:31:00 +02:00
let b:undo_ftplugin = "setl fo< cms< com<"