Add in some initial diffview styles.

This commit is contained in:
Michael Welford 2024-01-10 08:25:03 +10:30
parent 2fb2cca402
commit 38ce25cffb
4 changed files with 20 additions and 1 deletions

View File

@ -12,6 +12,10 @@
## v3.1
- fancy inactive handling
## v3 other todo
- DAP highlights
- Diffview highlights
### Todo include statusline config
- Set StatusLineNC to take into account inactive bg

View File

@ -44,7 +44,7 @@ local p = lush(function(injected_functions)
htmlH4 {htmlH2},
htmlH5 {htmlH2},
htmlH6 {htmlH2},
htmlTagName {modern.Keyword},
htmlTagName {modern.Keyword},
mkdLink {modern.Underlined},
mkdURL {fg = colours.blue_gray, gui = styles.underline},
mkdInlineURL {fg = colours.blue_gray, gui = styles.underline},

View File

@ -0,0 +1,13 @@
local lush = require('lush')
local colours = require('falcon.colours')
local styles = require('falcon.styles')
local p = lush(function()
return {
DiffviewFilePanelTitle {fg = colours.blue_gray, gui = styles.bold},
DiffviewFilePanelCounter {fg = colours.normal_gray},
DiffviewFolderSign {fg = colours.blue_gray},
}
end)
return p

View File

@ -2,6 +2,8 @@ local lush = require('lush')
local plugins = {
'blankline',
'dap',
'diffview',
'gitsigns',
'highlightedyank',
'nvim-coverage',