Initial Commit

This commit is contained in:
Maurice Grönwoldt 2025-07-30 16:05:16 +02:00
commit 18da9560c6
No known key found for this signature in database
GPG key ID: FBB005FE74FEF996
31 changed files with 769 additions and 0 deletions

36
lua/plugins/themes.lua Normal file
View file

@ -0,0 +1,36 @@
return {
"rebelot/kanagawa.nvim",
config = function()
require('kanagawa').setup({
compile = true,
transparent = true,
colors = {
theme = {
all = {
ui = {
bg_gutter = "none",
float = {
bg = "none",
},
}
}
}
},
overrides = function(colors)
return {
["@markup.link.url.markdown_inline"] = { link = "Special" }, -- (url)
["@markup.link.label.markdown_inline"] = { link = "WarningMsg" }, -- [label]
["@markup.italic.markdown_inline"] = { link = "Exception" }, -- *italic*
["@markup.raw.markdown_inline"] = { link = "String" }, -- `code`
["@markup.list.markdown"] = { link = "Function" }, -- + list
["@markup.quote.markdown"] = { link = "Error" }, -- > blockcode
["@markup.list.checked.markdown_inline"] = { link = "Error" } -- - [X] checked list item
}
end
})
vim.cmd("colorscheme kanagawa")
end,
build = function()
vim.cmd("KanagawaCompile")
end
}