-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(module): add signify support (#279)
- Loading branch information
1 parent
ae5df67
commit 07174bf
Showing
5 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
-- https://github.com/mhinz/vim-signify | ||
|
||
local M = {} | ||
|
||
function M.get(spec, config, opts) | ||
local git = spec.git | ||
|
||
-- stylua: ignore | ||
return { | ||
SignifySignAdd = { fg = git.add }, -- diff mode: Added line |diff.txt| | ||
SignifySignChange = { fg = git.changed }, -- diff mode: Changed line |diff.txt| | ||
SignifySignDelete = { fg = git.removed }, -- diff mode: Deleted line |diff.txt| | ||
} | ||
end | ||
|
||
return M |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters