blob: 7cec11194e584aa9db2ff5f5307ee7f296f8384f [file] [log] [blame]
Andis Spriņķis7517a8c2025-04-08 20:34:14 +02001" Vim filetype plugin file
2" Language: lf file manager configuration file (lfrc)
3" Maintainer: Andis Sprinkis <andis@sprinkis.com>
4" URL: https://github.com/andis-sprinkis/lf-vim
5" Last Change: 6 Apr 2025
6
7if exists("b:did_ftplugin") | finish | endif
8
9let b:did_ftplugin = 1
10
11let s:cpo = &cpo
12set cpo&vim
13
14let b:undo_ftplugin = "setlocal comments< commentstring< formatoptions<"
15
16setlocal comments=:#
17setlocal commentstring=#\ %s
18
19setlocal formatoptions-=t formatoptions+=rol
20
21let &cpo = s:cpo
22unlet s:cpo