This commit is contained in:
gbprod
2025-01-16 10:19:00 +01:00
committed by GitHub
parent a928f885a6
commit b0f3ed242f
2 changed files with 19 additions and 1 deletions
+2 -1
View File
@@ -40,7 +40,8 @@ function nord.load(opts)
require("nord.plugins.neogit").highlights(),
require("nord.plugins.glance").highlights(),
require("nord.plugins.mini").highlights(),
require("nord.plugins.markview").highlights()
require("nord.plugins.markview").highlights(),
require("nord.plugins.snacks").highlights()
)
vim.g.colors_name = "nord"
+17
View File
@@ -0,0 +1,17 @@
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