Neovim 0.5.0 migration #1

Merged
esensar merged 75 commits from neovim-0.5.0 into main 2021-07-05 09:34:51 +00:00
Showing only changes of commit 594d500d1d - Show all commits

View file

@ -146,7 +146,29 @@ local python_config = {
}
}
local dotnet_config = {}
local dotnet_config = {
["*"] = {
start = "dotnet run",
shell = "dotnet fsi"
},
["src/Controllers/*.cs"] = {
type = "controller"
},
["src/Models/*.cs"] = {
type = "model"
},
["src/Views/*.cshtml"] = {
type = "view"
},
["src/*.cs"] = {
type = "source",
alternate = "tests/{}Tests.cs"
},
["tests/*Tests.cs"] = {
type = "test",
alternate = "src/{}.cs"
}
}
local vim_plugin_config = {
["doc/*.txt"] = {