mirror of
https://github.com/gabehf/base46.git
synced 2026-03-09 15:38:15 -07:00
re-write whole plugin
added features to have local nvchad themes, override specific colors aka variables in nvchad themes
This commit is contained in:
parent
dbd746da1b
commit
1db5a6eda8
76 changed files with 1592 additions and 1284 deletions
69
lua/integrations/git.lua
Normal file
69
lua/integrations/git.lua
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
local theme = require("base16").get_colors "base_16"
|
||||
|
||||
return {
|
||||
|
||||
-- git commits
|
||||
gitcommitOverflow = {
|
||||
fg = theme.base08,
|
||||
},
|
||||
|
||||
gitcommitSummary = {
|
||||
fg = theme.base08,
|
||||
},
|
||||
|
||||
gitcommitComment = {
|
||||
fg = theme.base03,
|
||||
},
|
||||
|
||||
gitcommitUntracked = {
|
||||
fg = theme.base03,
|
||||
},
|
||||
|
||||
gitcommitDiscarded = {
|
||||
fg = theme.base03,
|
||||
},
|
||||
|
||||
gitcommitSelected = {
|
||||
fg = theme.base03,
|
||||
},
|
||||
|
||||
gitcommitHeader = {
|
||||
fg = theme.base0E,
|
||||
},
|
||||
|
||||
gitcommitSelectedType = {
|
||||
fg = theme.base0D,
|
||||
},
|
||||
|
||||
gitcommitUnmergedType = {
|
||||
fg = theme.base0D,
|
||||
},
|
||||
|
||||
gitcommitDiscardedType = {
|
||||
fg = theme.base0D,
|
||||
},
|
||||
|
||||
gitcommitBranch = {
|
||||
fg = theme.base09,
|
||||
bold = true,
|
||||
},
|
||||
|
||||
gitcommitUntrackedFile = {
|
||||
fg = theme.base0A,
|
||||
},
|
||||
|
||||
gitcommitUnmergedFile = {
|
||||
fg = theme.base08,
|
||||
bold = true,
|
||||
},
|
||||
|
||||
gitcommitDiscardedFile = {
|
||||
fg = theme.base08,
|
||||
bold = true,
|
||||
},
|
||||
|
||||
gitcommitSelectedFile = {
|
||||
fg = theme.base0B,
|
||||
bold = true,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue