mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 09:40:04 +08:00
13 lines
310 B
VimL
13 lines
310 B
VimL
|
scriptencoding utf-8
|
||
|
|
||
|
augroup aufsharp
|
||
|
autocmd!
|
||
|
augroup END
|
||
|
|
||
|
" https://github.com/fsharp/vim-fsharp/pull/103
|
||
|
if !has('nvim') && !has('gui_running')
|
||
|
autocmd aufsharp BufNewFile,BufRead *.fs,*.fsi,*.fsx set regexpengine=1
|
||
|
endif
|
||
|
|
||
|
autocmd aufsharp BufNewFile,BufRead *.fs,*.fsi,*.fsx setlocal filetype=fsharp
|