initial config
This commit is contained in:
commit
096f0c0913
2 changed files with 41 additions and 0 deletions
11
config.toml
Normal file
11
config.toml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
theme = "molokai"
|
||||
|
||||
[editor]
|
||||
line-number = "relative"
|
||||
clipboard-provider = "win32-yank"
|
||||
true-color = true
|
||||
|
||||
[editor.cursor-shape]
|
||||
insert = "bar"
|
||||
normal = "block"
|
||||
select = "underline"
|
||||
30
languages.toml
Normal file
30
languages.toml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
[language-server.csharp-ls]
|
||||
command = "csharp-ls"
|
||||
|
||||
[language-server.tsgo]
|
||||
command = "tsgo"
|
||||
args = ["--lsp", "--stdio"]
|
||||
|
||||
[language-server.angular]
|
||||
command = "ngserver"
|
||||
args = [
|
||||
"--stdio",
|
||||
"--tsProbeLocations", "node_modules",
|
||||
"--ngProbeLocations", "node_modules"
|
||||
]
|
||||
|
||||
[[language]]
|
||||
name = "c-sharp"
|
||||
scope = "source.cs"
|
||||
roots = ["*.slnx", "*.sln", "*.csproj"]
|
||||
language-servers = ["csharp-ls"]
|
||||
|
||||
[[language]]
|
||||
name = "typescript"
|
||||
roots = ["angular.json", "package.json", "tsconfig.json"]
|
||||
language-servers = [ "tsgo", "angular" ]
|
||||
|
||||
[[language]]
|
||||
name = "html"
|
||||
roots = ["angular.json", "package.json", "tsconfig.json"]
|
||||
language-servers = [ "angular", "vscode-html-language-server" ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue