Initial commit

This commit is contained in:
Dave Gallant
2019-10-21 16:37:23 -04:00
commit cec4966e44
28 changed files with 1827 additions and 0 deletions

26
.vim/coc-settings.json Normal file
View File

@@ -0,0 +1,26 @@
{
"languageserver": {
"golang": {
"command": "gopls",
"filetypes": [
"go"
],
"rootPatterns": [
"go.mod",
".vim/",
".git/",
".hg/"
]
},
"terraform": {
"command": "terraform-lsp",
"filetypes": [
"tf"
],
"rootPatterns": [
".vim/",
".git/"
]
}
}
}