chore(nvim): new theme
This commit is contained in:
@@ -21,9 +21,12 @@ return {
|
|||||||
{
|
{
|
||||||
'sphamba/smear-cursor.nvim',
|
'sphamba/smear-cursor.nvim',
|
||||||
opts = {
|
opts = {
|
||||||
time_interval = 10,
|
time_interval = 17,
|
||||||
|
anticipation = 0,
|
||||||
|
damping = 0.8,
|
||||||
|
|
||||||
|
cursor_color = '#b7bcb9',
|
||||||
legacy_computing_symbols_support = true,
|
legacy_computing_symbols_support = true,
|
||||||
cursor_color = '#fcdc34',
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,8 +3,47 @@ return {
|
|||||||
'blazkowolf/gruber-darker.nvim',
|
'blazkowolf/gruber-darker.nvim',
|
||||||
priority = 999,
|
priority = 999,
|
||||||
config = function()
|
config = function()
|
||||||
-- require('gruber-darker').setup()
|
|
||||||
vim.cmd.colorscheme('gruber-darker')
|
vim.cmd.colorscheme('gruber-darker')
|
||||||
end,
|
end,
|
||||||
|
enabled = false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'nyoom-engineering/oxocarbon.nvim',
|
||||||
|
priority = 999,
|
||||||
|
config = function()
|
||||||
|
vim.cmd.colorscheme('oxocarbon')
|
||||||
|
|
||||||
|
local function hi(c, link)
|
||||||
|
vim.api.nvim_set_hl(0, 'BlinkCmpKind' .. c, { link = link })
|
||||||
|
end
|
||||||
|
|
||||||
|
hi('Text', 'Identifier')
|
||||||
|
hi('Method', '@function.builtin')
|
||||||
|
hi('Function', 'Function')
|
||||||
|
hi('Constructor', '@character')
|
||||||
|
hi('Field', '@property')
|
||||||
|
hi('Variable', '@label')
|
||||||
|
hi('Class', 'Todo')
|
||||||
|
hi('Interface', 'Type')
|
||||||
|
hi('Module', 'Macro')
|
||||||
|
hi('Property', '@property')
|
||||||
|
hi('Unit', 'Type')
|
||||||
|
hi('Value', 'Number')
|
||||||
|
hi('Enum', 'String')
|
||||||
|
hi('Keyword', 'Identifier')
|
||||||
|
hi('Snippet', 'Identifier')
|
||||||
|
hi('Color', 'Identifier')
|
||||||
|
hi('File', 'Identifier')
|
||||||
|
hi('Folder', 'identifier')
|
||||||
|
hi('Reference', 'Identifier')
|
||||||
|
hi('EnumMember', 'String')
|
||||||
|
hi('Constant', '@constant.builtin')
|
||||||
|
hi('Struct', 'Type')
|
||||||
|
hi('Event', '@constant')
|
||||||
|
hi('Operator', 'Structure')
|
||||||
|
hi('TypeParameter', 'Type')
|
||||||
|
|
||||||
|
vim.api.nvim_set_hl(0, 'BlinkCmpMenuSelection', { link = 'IncSearch' })
|
||||||
|
end,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user