mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
improve git styles
This commit is contained in:
parent
bcdf026b1c
commit
cd31565ada
1 changed files with 28 additions and 11 deletions
|
|
@ -54,11 +54,11 @@ theme.loadEditor = function()
|
||||||
-- CursorIM = {},
|
-- CursorIM = {},
|
||||||
CursorLine = { bg = p.highlight_inactive },
|
CursorLine = { bg = p.highlight_inactive },
|
||||||
CursorLineNr = { fg = p.text },
|
CursorLineNr = { fg = p.text },
|
||||||
DiffAdd = { fg = '', bg = '' },
|
DiffAdd = { fg = p.foam },
|
||||||
DiffChange = { fg = '', bg = '' },
|
DiffChange = { fg = p.rose },
|
||||||
DiffDelete = { fg = '', bg = '' },
|
DiffDelete = { fg = p.love },
|
||||||
DiffText = { fg = '', bg = '' },
|
DiffText = { fg = p.text },
|
||||||
Directory = { fg = p.foam },
|
Directory = { fg = p.foam, bg = p.none },
|
||||||
-- EndOfBuffer = {},
|
-- EndOfBuffer = {},
|
||||||
ErrorMsg = { fg = p.love, style = 'bold' },
|
ErrorMsg = { fg = p.love, style = 'bold' },
|
||||||
-- FoldColumn = {},
|
-- FoldColumn = {},
|
||||||
|
|
@ -243,20 +243,37 @@ theme.loadPlugins = function()
|
||||||
|
|
||||||
-- gitsigns.nvim
|
-- gitsigns.nvim
|
||||||
-- https://github.com/lewis6991/gitsigns.nvim
|
-- https://github.com/lewis6991/gitsigns.nvim
|
||||||
|
SignAdd = { fg = p.foam },
|
||||||
|
SignChange = { fg = p.rose },
|
||||||
|
SignDelete = { fg = p.love },
|
||||||
GitSignsAdd = { fg = p.foam },
|
GitSignsAdd = { fg = p.foam },
|
||||||
GitSignsChange = { fg = p.rose },
|
GitSignsChange = { fg = p.rose },
|
||||||
GitSignsDelete = { fg = p.love },
|
GitSignsDelete = { fg = p.love },
|
||||||
|
|
||||||
-- nvim-tree.lua
|
-- nvim-tree.lua
|
||||||
-- https://github.com/kyazdani42/nvim-tree.lua
|
-- https://github.com/kyazdani42/nvim-tree.lua
|
||||||
|
NvimTreeNormal = { fg = p.text },
|
||||||
|
|
||||||
NvimTreeEmptyFolderName = { fg = p.inactive },
|
NvimTreeEmptyFolderName = { fg = p.inactive },
|
||||||
NvimTreeFolderIcon = { fg = p.subtle },
|
NvimTreeFolderIcon = { fg = p.subtle },
|
||||||
NvimTreeGitDeleted = {},
|
NvimTreeFolderName = { fg = p.foam },
|
||||||
NvimTreeGitDirty = {},
|
NvimTreeOpenedFile = { fg = p.text, bg = p.highlight },
|
||||||
NvimTreeGitMerge = {},
|
NvimTreeOpenedFolderName = { fg = p.foam },
|
||||||
NvimTreeGitNew = {},
|
NvimTreeRootFolder = { fg = p.iris },
|
||||||
NvimTreeGitRenamed = {},
|
|
||||||
NvimTreeGitStaged = {},
|
NvimTreeGitDeleted = { fg = p.love },
|
||||||
|
NvimTreeGitDirty = { fg = p.rose },
|
||||||
|
NvimTreeGitMerge = { fg = p.iris },
|
||||||
|
NvimTreeGitNew = { fg = p.foam },
|
||||||
|
NvimTreeGitRenamed = { fg = p.pine },
|
||||||
|
NvimTreeGitStaged = { fg = p.iris },
|
||||||
|
|
||||||
|
NvimTreeFileDeleted = { fg = p.love },
|
||||||
|
NvimTreeFileDirty = { fg = p.rose },
|
||||||
|
NvimTreeFileMerge = { fg = p.iris },
|
||||||
|
NvimTreeFileNew = { fg = p.foam },
|
||||||
|
NvimTreeFileRenamed = { fg = p.pine },
|
||||||
|
NvimTreeFileStaged = { fg = p.iris },
|
||||||
}
|
}
|
||||||
|
|
||||||
return plugins
|
return plugins
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue