feat: initial commit; NixOS Era
This commit is contained in:
43
pkgs/neovim/lua/plugins/theme.lua
Normal file
43
pkgs/neovim/lua/plugins/theme.lua
Normal file
@@ -0,0 +1,43 @@
|
||||
return {
|
||||
{
|
||||
'nyoom-engineering/oxocarbon.nvim',
|
||||
priority = 999,
|
||||
config = function()
|
||||
vim.cmd.colorscheme('oxocarbon')
|
||||
|
||||
local groups = {
|
||||
Text = 'Identifier',
|
||||
Method = '@function.builtin',
|
||||
Function = 'Function',
|
||||
Constructor = '@character',
|
||||
Field = '@property',
|
||||
Variable = '@label',
|
||||
Class = 'Todo',
|
||||
Interface = 'Type',
|
||||
Module = 'Macro',
|
||||
Property = '@property',
|
||||
Unit = 'Type',
|
||||
Value = 'Number',
|
||||
Enum = 'String',
|
||||
Keyword = 'Identifier',
|
||||
Snippet = 'Identifier',
|
||||
Color = 'Identifier',
|
||||
File = 'Identifier',
|
||||
Folder = 'identifier',
|
||||
Reference = 'Identifier',
|
||||
EnumMember = 'String',
|
||||
Constant = '@constant.builtin',
|
||||
Struct = 'Type',
|
||||
Event = '@constant',
|
||||
Operator = 'Structure',
|
||||
TypeParameter = 'Type',
|
||||
}
|
||||
|
||||
for key, value in pairs(groups) do
|
||||
vim.api.nvim_set_hl(0, 'BlinkCmpKind' .. key, { link = value })
|
||||
end
|
||||
|
||||
vim.api.nvim_set_hl(0, 'BlinkCmpMenuSelection', { link = 'IncSearch' })
|
||||
end,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user