mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-17 16:21:12 +02:00
c sharp
This commit is contained in:
parent
7a26e6c951
commit
1f8a7a4eda
15 changed files with 110 additions and 232 deletions
|
@ -1,5 +1 @@
|
|||
return {
|
||||
'water-sucks/darkrose.nvim',
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
}
|
||||
return { 'water-sucks/darkrose.nvim' }
|
||||
|
|
|
@ -1,6 +1 @@
|
|||
return {
|
||||
{
|
||||
'metalelf0/jellybeans-nvim',
|
||||
dependencies = { 'rktjmp/lush.nvim' },
|
||||
},
|
||||
}
|
||||
return { 'nanotech/jellybeans.vim' }
|
||||
|
|
|
@ -2,12 +2,17 @@ return {
|
|||
'rebelot/kanagawa.nvim',
|
||||
config = function()
|
||||
require('kanagawa').setup {
|
||||
statementStyle = { italic = false },
|
||||
functionStyle = { italic = false },
|
||||
typeStyle = { italic = false },
|
||||
colors = {
|
||||
palette = {
|
||||
-- change all usages of these colors
|
||||
sumiInk0 = '#0D0D0D',
|
||||
fujiWhite = '#FFFFFF',
|
||||
},
|
||||
keywordStyle = { italic = false },
|
||||
commentStyle = { italic = false },
|
||||
theme = {
|
||||
-- change specific usages for a certain theme, or for all of them
|
||||
wave = {
|
||||
|
|
1
lua/custom/plugins/material-gruvbox.lua
Normal file
1
lua/custom/plugins/material-gruvbox.lua
Normal file
|
@ -0,0 +1 @@
|
|||
return { 'sainnhe/gruvbox-material' }
|
|
@ -1 +1,3 @@
|
|||
return { 'marko-cerovac/material.nvim' }
|
||||
return {
|
||||
'marko-cerovac/material.nvim',
|
||||
}
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
return {
|
||||
'xero/miasma.nvim',
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
-- lazy = false,
|
||||
-- priority = 1000,
|
||||
-- config = function()
|
||||
-- vim.cmd 'colorscheme miasma'
|
||||
-- end,
|
||||
}
|
||||
|
|
1
lua/custom/plugins/nightfox.lua
Normal file
1
lua/custom/plugins/nightfox.lua
Normal file
|
@ -0,0 +1 @@
|
|||
return { 'EdenEast/nightfox.nvim' }
|
1
lua/custom/plugins/nvim-material-icon.lua
Normal file
1
lua/custom/plugins/nvim-material-icon.lua
Normal file
|
@ -0,0 +1 @@
|
|||
return { 'DaikyXendo/nvim-material-icon' }
|
1
lua/custom/plugins/obscure.lua
Normal file
1
lua/custom/plugins/obscure.lua
Normal file
|
@ -0,0 +1 @@
|
|||
return { 'killitar/obscure.nvim' }
|
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,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
10
lua/custom/plugins/tairiki.lua
Normal file
10
lua/custom/plugins/tairiki.lua
Normal file
|
@ -0,0 +1,10 @@
|
|||
return {
|
||||
'deparr/tairiki.nvim',
|
||||
lazy = false,
|
||||
priority = 1000, -- only necessary if you use tairiki as default theme
|
||||
config = function()
|
||||
require('tairiki').setup {
|
||||
style = 'dark',
|
||||
}
|
||||
end,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue