From 3918ea65483c1fcd6af2d154f5d70fc43140bb57 Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Sat, 3 Oct 2020 16:46:12 +0200 Subject: [PATCH] feat(neovim): configure csharp test runner --- home/editors/neovim/default.nix | 4 ++-- home/editors/neovim/test.vim | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 home/editors/neovim/test.vim diff --git a/home/editors/neovim/default.nix b/home/editors/neovim/default.nix index e5de43b..49bd5ab 100644 --- a/home/editors/neovim/default.nix +++ b/home/editors/neovim/default.nix @@ -83,8 +83,8 @@ in { ]; extraConfig = with builtins; readFile ./init.vim + readFile ./vim-surround-fix.vim - + readFile ./which-key.vim + vimLua (readFile ./lsp/extensions.lua) - + readFile ./lsp/lsp.vim + '' + + readFile ./which-key.vim + readFile ./test.vim + + vimLua (readFile ./lsp/extensions.lua) + readFile ./lsp/lsp.vim + '' packloadall " https://github.com/neovim/neovim/issues/11409 ${vimLua (readFile ./lsp/lsp.lua)} ''; diff --git a/home/editors/neovim/test.vim b/home/editors/neovim/test.vim new file mode 100644 index 0000000..eb2a586 --- /dev/null +++ b/home/editors/neovim/test.vim @@ -0,0 +1 @@ +let g:test#csharp#runner = 'dotnettest'