feat: add omnisharp config
This commit is contained in:
parent
f0f019c5ac
commit
95576265a2
3 changed files with 37 additions and 3 deletions
|
@ -15,11 +15,14 @@
|
||||||
},
|
},
|
||||||
"assistant": {
|
"assistant": {
|
||||||
"default_model": {
|
"default_model": {
|
||||||
"provider": "ollama",
|
"provider": "copilot_chat",
|
||||||
"model": "llama3.1:latest"
|
"model": "gpt-4o"
|
||||||
},
|
},
|
||||||
"version": "2"
|
"version": "2"
|
||||||
},
|
},
|
||||||
|
"preview_tabs": {
|
||||||
|
"enable_preview_from_code_navigation": true
|
||||||
|
},
|
||||||
"features": {
|
"features": {
|
||||||
"copilot": true
|
"copilot": true
|
||||||
},
|
},
|
||||||
|
@ -27,6 +30,9 @@
|
||||||
"CSharp": {
|
"CSharp": {
|
||||||
"show_copilot_suggestions": true
|
"show_copilot_suggestions": true
|
||||||
},
|
},
|
||||||
|
"proto": {
|
||||||
|
"language_servers": ["proto"]
|
||||||
|
},
|
||||||
"Go": {
|
"Go": {
|
||||||
"inlay_hints": {
|
"inlay_hints": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
|
@ -49,6 +55,9 @@
|
||||||
"ui_font_size": 14,
|
"ui_font_size": 14,
|
||||||
"buffer_font_size": 12.5,
|
"buffer_font_size": 12.5,
|
||||||
"lsp": {
|
"lsp": {
|
||||||
|
"omnisharp": {
|
||||||
|
"initialization_options": {}
|
||||||
|
},
|
||||||
"golangci-lint": {
|
"golangci-lint": {
|
||||||
"initialization_options": {
|
"initialization_options": {
|
||||||
"command": [
|
"command": [
|
||||||
|
|
|
@ -7,7 +7,7 @@ export LIBVIRT_DEFAULT_URI="qemu:///session"
|
||||||
# Libvirt #
|
# Libvirt #
|
||||||
|
|
||||||
# dotnet #
|
# dotnet #
|
||||||
export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
|
export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=0
|
||||||
# dotnet #
|
# dotnet #
|
||||||
|
|
||||||
# git-age #
|
# git-age #
|
||||||
|
|
25
dot_omnisharp/omnisharp.json
Normal file
25
dot_omnisharp/omnisharp.json
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"FormattingOptions": {
|
||||||
|
"EnableEditorConfigSupport": true,
|
||||||
|
"OrganizeImports": true
|
||||||
|
},
|
||||||
|
"RoslynExtensionsOptions": {
|
||||||
|
"enableDecompilationSupport": true,
|
||||||
|
"enableImportCompletion": true,
|
||||||
|
"enableAnalyzersSupport": true,
|
||||||
|
"inlayHintsOptions": {
|
||||||
|
"enableForParameters": true,
|
||||||
|
"forLiteralParameters": true,
|
||||||
|
"forIndexerParameters": true,
|
||||||
|
"forObjectCreationParameters": true,
|
||||||
|
"forOtherParameters": true,
|
||||||
|
"suppressForParametersThatDifferOnlyBySuffix": false,
|
||||||
|
"suppressForParametersThatMatchMethodIntent": false,
|
||||||
|
"suppressForParametersThatMatchArgumentName": false,
|
||||||
|
"enableForTypes": true,
|
||||||
|
"forImplicitVariableTypes": true,
|
||||||
|
"forLambdaParameterTypes": true,
|
||||||
|
"forImplicitObjectCreation": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue