Merge branch 'v3' of github.com:fenetikm/falcon into v3

This commit is contained in:
Michael Welford 2024-08-10 15:36:47 +09:30
commit 390c94fce8
2 changed files with 16 additions and 3 deletions

View File

@ -9,6 +9,10 @@ local diff = require('falcon.extras.common.diff')
local p = lush(function() local p = lush(function()
return { return {
NeogitSectionHeader { modern.Keyword}, NeogitSectionHeader { modern.Keyword},
NeogitPopupSwitchKey { fg = colours.light_gray},
NeogitPopupOptionKey { NeogitPopupSwitchKey},
NeogitPopupConfigKey { NeogitPopupSwitchKey},
NeogitPopupActionKey { NeogitPopupSwitchKey},
NeogitUnmergedInto { NeogitSectionHeader}, NeogitUnmergedInto { NeogitSectionHeader},
NeogitBranch { modern.Normal}, NeogitBranch { modern.Normal},
NeogitBranchHead { modern.Normal}, NeogitBranchHead { modern.Normal},
@ -16,6 +20,7 @@ local p = lush(function()
NeogitTagName { modern.Normal}, NeogitTagName { modern.Normal},
NeogitTagDistance { modern.Comment}, NeogitTagDistance { modern.Comment},
NeogitHunkHeader { modern.Comment}, NeogitHunkHeader { modern.Comment},
NeogitHunkHeaderCursor { modern.Comment},
NeogitHunkHeaderHighlight { modern.Comment}, NeogitHunkHeaderHighlight { modern.Comment},
NeogitChangeModified { gitsigns.GitSignsChange}, NeogitChangeModified { gitsigns.GitSignsChange},
NeogitChangeBothModified { NeogitChangeModified}, NeogitChangeBothModified { NeogitChangeModified},

View File

@ -3,9 +3,17 @@ local colours = require('falcon.colours')
local p = lush(function() local p = lush(function()
return { return {
OilDirIcon { fg = colours.blue_gray}, OilDirIcon { fg = colours.blue_gray },
OilDir { fg = colours.blue_gray}, OilDir { fg = colours.blue_gray },
OilNoIcon { fg = colours.blue_dark_gray}, OilNoIcon { fg = colours.blue_dark_gray },
OilCreate { fg = colours.green },
OilMove { fg = colours.blue_gray },
OilCopy { OilMove },
OilChange { OilMove },
OilRestore { OilMove },
OilDelete { fg = colours.red },
OilTrash { OilDelete },
OilPurge { OilDelete },
} }
end) end)