Add some extensions (#30)

This commit is contained in:
Patrick Stevens
2024-02-23 11:11:31 +00:00
committed by GitHub
parent 6af765d032
commit a3a8a5598a
3 changed files with 72 additions and 57 deletions

View File

@@ -355,17 +355,3 @@ set statusline+=%*
set statusline=\ %{HasPaste()}%F%m%r%h\ %w\ \ CWD:\ %r%{getcwd()}%h\ \ \ Line:\ %l\ \ Column:\ %c
set fileformat=unix
let g:fsharp#fsautocomplete_command =
\ [ 'dotnet',
\ 'fsautocomplete',
\ '--background-service-enabled'
\ ]
let g:fsharp#show_signature_on_cursor_move = 1
if has('nvim') && exists('*nvim_open_win')
augroup FSharpGroup
autocmd!
autocmd FileType fsharp nnoremap <leader>t :call fsharp#showTooltip()<CR>
augroup END
endif