mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-01 21:04:30 +02:00
plugins.gitsigns: remove deprecated options
https://github.com/lewis6991/gitsigns.nvim/issues/453
This commit is contained in:
parent
bd650b953e
commit
18ecd740e9
2 changed files with 14 additions and 41 deletions
|
@ -9,42 +9,12 @@
|
|||
|
||||
settings = {
|
||||
signs = {
|
||||
add = {
|
||||
hl = "GitSignsAdd";
|
||||
text = "┃";
|
||||
numhl = "GitSignsAddNr";
|
||||
linehl = "GitSignsAddLn";
|
||||
};
|
||||
change = {
|
||||
hl = "GitSignsChange";
|
||||
text = "┃";
|
||||
numhl = "GitSignsChangeNr";
|
||||
linehl = "GitSignsChangeLn";
|
||||
};
|
||||
delete = {
|
||||
hl = "GitSignsDelete";
|
||||
text = "▁";
|
||||
numhl = "GitSignsDeleteNr";
|
||||
linehl = "GitSignsDeleteLn";
|
||||
};
|
||||
topdelete = {
|
||||
hl = "GitSignsDelete";
|
||||
text = "▔";
|
||||
numhl = "GitSignsDeleteNr";
|
||||
linehl = "GitSignsDeleteLn";
|
||||
};
|
||||
changedelete = {
|
||||
hl = "GitSignsChange";
|
||||
text = "~";
|
||||
numhl = "GitSignsChangeNr";
|
||||
linehl = "GitSignsChangeLn";
|
||||
};
|
||||
untracked = {
|
||||
hl = "GitSignsAdd";
|
||||
text = "┆";
|
||||
numhl = "GitSignsAddNr";
|
||||
linehl = "GitSignsAddLn";
|
||||
};
|
||||
add.text = "┃";
|
||||
change.text = "┃";
|
||||
delete.text = "▁";
|
||||
topdelete.text = "▔";
|
||||
changedelete.text = "~";
|
||||
untracked.text = "┆";
|
||||
};
|
||||
worktrees = [
|
||||
{
|
||||
|
@ -133,9 +103,6 @@
|
|||
current_line_blame_formatter = " <author>, <author_time> - <summary> ";
|
||||
current_line_blame_formatter_nc = " <author>";
|
||||
trouble = false;
|
||||
yadm = {
|
||||
enable = false;
|
||||
};
|
||||
word_diff = false;
|
||||
debug_mode = false;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue