mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-18 08:39:06 +02:00
c sharp
This commit is contained in:
parent
7a26e6c951
commit
1f8a7a4eda
15 changed files with 110 additions and 232 deletions
28
lua/custom/plugins/roslyn.lua
Normal file
28
lua/custom/plugins/roslyn.lua
Normal file
|
@ -0,0 +1,28 @@
|
|||
return {
|
||||
'seblj/roslyn.nvim',
|
||||
ft = 'cs',
|
||||
opts = {
|
||||
-- your configuration comes here; leave empty for default settings
|
||||
config = {
|
||||
settings = {
|
||||
['csharp|inlay_hints'] = {
|
||||
csharp_enable_inlay_hints_for_implicit_object_creation = true,
|
||||
csharp_enable_inlay_hints_for_implicit_variable_types = true,
|
||||
csharp_enable_inlay_hints_for_lambda_parameter_types = true,
|
||||
csharp_enable_inlay_hints_for_types = true,
|
||||
dotnet_enable_inlay_hints_for_indexer_parameters = true,
|
||||
dotnet_enable_inlay_hints_for_literal_parameters = true,
|
||||
dotnet_enable_inlay_hints_for_object_creation_parameters = true,
|
||||
dotnet_enable_inlay_hints_for_other_parameters = true,
|
||||
dotnet_enable_inlay_hints_for_parameters = true,
|
||||
dotnet_suppress_inlay_hints_for_parameters_that_differ_only_by_suffix = true,
|
||||
dotnet_suppress_inlay_hints_for_parameters_that_match_argument_name = true,
|
||||
dotnet_suppress_inlay_hints_for_parameters_that_match_method_intent = true,
|
||||
},
|
||||
['csharp|code_lens'] = {
|
||||
dotnet_enable_references_code_lens = true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue