This commit is contained in:
Tawfeeq 2024-09-20 23:47:43 +02:00
parent 7a26e6c951
commit 1f8a7a4eda
15 changed files with 110 additions and 232 deletions

View file

@ -1,5 +1 @@
return {
'water-sucks/darkrose.nvim',
lazy = false,
priority = 1000,
}
return { 'water-sucks/darkrose.nvim' }

View file

@ -1,6 +1 @@
return {
{
'metalelf0/jellybeans-nvim',
dependencies = { 'rktjmp/lush.nvim' },
},
}
return { 'nanotech/jellybeans.vim' }

View file

@ -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 = {

View file

@ -0,0 +1 @@
return { 'sainnhe/gruvbox-material' }

View file

@ -1 +1,3 @@
return { 'marko-cerovac/material.nvim' }
return {
'marko-cerovac/material.nvim',
}

View file

@ -1,5 +1,8 @@
return {
'xero/miasma.nvim',
lazy = false,
priority = 1000,
-- lazy = false,
-- priority = 1000,
-- config = function()
-- vim.cmd 'colorscheme miasma'
-- end,
}

View file

@ -0,0 +1 @@
return { 'EdenEast/nightfox.nvim' }

View file

@ -0,0 +1 @@
return { 'DaikyXendo/nvim-material-icon' }

View file

@ -0,0 +1 @@
return { 'killitar/obscure.nvim' }

View 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,
},
},
},
},
}

View 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,
}