feat(neovim): configure csharp test runner

This commit is contained in:
Felix Schröter 2020-10-03 16:46:12 +02:00
parent 474a56de66
commit 3918ea6548
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58
2 changed files with 3 additions and 2 deletions

View file

@ -83,8 +83,8 @@ in {
]; ];
extraConfig = with builtins; extraConfig = with builtins;
readFile ./init.vim + readFile ./vim-surround-fix.vim readFile ./init.vim + readFile ./vim-surround-fix.vim
+ readFile ./which-key.vim + vimLua (readFile ./lsp/extensions.lua) + readFile ./which-key.vim + readFile ./test.vim
+ readFile ./lsp/lsp.vim + '' + vimLua (readFile ./lsp/extensions.lua) + readFile ./lsp/lsp.vim + ''
packloadall " https://github.com/neovim/neovim/issues/11409 packloadall " https://github.com/neovim/neovim/issues/11409
${vimLua (readFile ./lsp/lsp.lua)} ${vimLua (readFile ./lsp/lsp.lua)}
''; '';

View file

@ -0,0 +1 @@
let g:test#csharp#runner = 'dotnettest'