feat(nvim): add custom icon for Orgmode
This commit is contained in:
parent
c35fa97991
commit
7d81625bb2
@ -123,7 +123,6 @@ return {
|
|||||||
{ name = "async_path", priority = 6 },
|
{ name = "async_path", priority = 6 },
|
||||||
{ name = "zsh", priority = 5 },
|
{ name = "zsh", priority = 5 },
|
||||||
{ name = "emoji", keyword_length = 2 },
|
{ name = "emoji", keyword_length = 2 },
|
||||||
{ name = "neorg" },
|
|
||||||
{ name = "calc" },
|
{ name = "calc" },
|
||||||
{ name = "npm", keyword_length = 2 },
|
{ name = "npm", keyword_length = 2 },
|
||||||
{ name = "spell", keyword_length = 2 },
|
{ name = "spell", keyword_length = 2 },
|
||||||
@ -141,7 +140,7 @@ return {
|
|||||||
local selections = {
|
local selections = {
|
||||||
fuzzy_buffer = { symbol = " ", name = "Buffer", hl_group = "Buffer" },
|
fuzzy_buffer = { symbol = " ", name = "Buffer", hl_group = "Buffer" },
|
||||||
calc = { symbol = " ", name = "Calculator", hl_group = "Calculator" },
|
calc = { symbol = " ", name = "Calculator", hl_group = "Calculator" },
|
||||||
neorg = { symbol = " ", name = "Neorg", hl_group = "Neorg" },
|
orgmode = { symbol = " ", name = "Org", hl_group = "Orgmode" },
|
||||||
emoji = { symbol = " ", name = "Emoji", hl_group = "Emoji" },
|
emoji = { symbol = " ", name = "Emoji", hl_group = "Emoji" },
|
||||||
zsh = { symbol = " ", name = "Zsh", hl_group = "Zsh" },
|
zsh = { symbol = " ", name = "Zsh", hl_group = "Zsh" },
|
||||||
crates = { symbol = " ", name = "Crates", hl_group = "Crates" },
|
crates = { symbol = " ", name = "Crates", hl_group = "Crates" },
|
||||||
|
@ -111,7 +111,7 @@ return {
|
|||||||
CmpCustomSelectionBuffer = { fg = colors.fujiWhite, bg = colors.dragonBlue },
|
CmpCustomSelectionBuffer = { fg = colors.fujiWhite, bg = colors.dragonBlue },
|
||||||
CmpCustomSelectionPath = { fg = colors.fujiWhite, bg = colors.autumnYellow },
|
CmpCustomSelectionPath = { fg = colors.fujiWhite, bg = colors.autumnYellow },
|
||||||
CmpCustomSelectionCalculator = { fg = colors.fujiWhite, bg = colors.waveBlue2 },
|
CmpCustomSelectionCalculator = { fg = colors.fujiWhite, bg = colors.waveBlue2 },
|
||||||
CmpCustomSelectionNeorg = { fg = colors.fujiWhite, bg = colors.waveAqua1 },
|
CmpCustomSelectionOrgmode = { fg = colors.fujiWhite, bg = colors.waveAqua1 },
|
||||||
CmpCustomSelectionEmoji = { fg = colors.fujiWhite, bg = colors.carpYellow },
|
CmpCustomSelectionEmoji = { fg = colors.fujiWhite, bg = colors.carpYellow },
|
||||||
CmpCustomSelectionZsh = { fg = colors.fujiWhite, bg = colors.springGreen },
|
CmpCustomSelectionZsh = { fg = colors.fujiWhite, bg = colors.springGreen },
|
||||||
CmpCustomSelectionCrates = { fg = colors.fujiWhite, bg = colors.roninYellow },
|
CmpCustomSelectionCrates = { fg = colors.fujiWhite, bg = colors.roninYellow },
|
||||||
|
Loading…
Reference in New Issue
Block a user