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": {
|
||||
"default_model": {
|
||||
"provider": "ollama",
|
||||
"model": "llama3.1:latest"
|
||||
"provider": "copilot_chat",
|
||||
"model": "gpt-4o"
|
||||
},
|
||||
"version": "2"
|
||||
},
|
||||
"preview_tabs": {
|
||||
"enable_preview_from_code_navigation": true
|
||||
},
|
||||
"features": {
|
||||
"copilot": true
|
||||
},
|
||||
|
@ -27,6 +30,9 @@
|
|||
"CSharp": {
|
||||
"show_copilot_suggestions": true
|
||||
},
|
||||
"proto": {
|
||||
"language_servers": ["proto"]
|
||||
},
|
||||
"Go": {
|
||||
"inlay_hints": {
|
||||
"enabled": true,
|
||||
|
@ -49,6 +55,9 @@
|
|||
"ui_font_size": 14,
|
||||
"buffer_font_size": 12.5,
|
||||
"lsp": {
|
||||
"omnisharp": {
|
||||
"initialization_options": {}
|
||||
},
|
||||
"golangci-lint": {
|
||||
"initialization_options": {
|
||||
"command": [
|
||||
|
|
|
@ -7,7 +7,7 @@ export LIBVIRT_DEFAULT_URI="qemu:///session"
|
|||
# Libvirt #
|
||||
|
||||
# dotnet #
|
||||
export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
|
||||
export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=0
|
||||
# dotnet #
|
||||
|
||||
# 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