mirror of
https://github.com/gbprod/nord.nvim.git
synced 2026-08-24 10:14:09 -05:00
18 lines
412 B
Lua
18 lines
412 B
Lua
local snacks = {}
|
|
|
|
local c = require("nord.colors").palette
|
|
|
|
function snacks.highlights()
|
|
return {
|
|
SnacksDashboardDir = { link = "Comment" },
|
|
|
|
SnacksPickerTotals = { link = "Comment" },
|
|
SnacksPickerDir = { link = "Comment" },
|
|
SnacksPickerBufFlags = { link = "Comment" },
|
|
SnacksPickerKeymapRhs = { link = "Comment" },
|
|
SnacksPickerGitStatus = { link = "Comment" },
|
|
}
|
|
end
|
|
|
|
return snacks
|