mirror of
https://github.com/youwen5/neovim-flake.git
synced 2024-11-24 19:03:49 -08:00
feat(gitsigns): add line blame config
This commit is contained in:
parent
721d145307
commit
9aea792f09
1 changed files with 9 additions and 1 deletions
|
@ -48,7 +48,15 @@
|
||||||
};
|
};
|
||||||
crates-nvim.enable = true;
|
crates-nvim.enable = true;
|
||||||
# git stuff
|
# git stuff
|
||||||
gitsigns.enable = true;
|
gitsigns = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
current_line_blame_opts = {
|
||||||
|
virt_text = true;
|
||||||
|
virt_text_pos = "eol";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
neogit = {
|
neogit = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings.graph_style = "unicode";
|
settings.graph_style = "unicode";
|
||||||
|
|
Loading…
Reference in a new issue