23 lines
469 B
Nix
23 lines
469 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.neovim.plugins = with pkgs.vimPlugins; [
|
|
{
|
|
plugin = gitsigns-nvim;
|
|
type = "lua";
|
|
config =
|
|
# lua
|
|
''
|
|
require("gitsigns").setup({
|
|
signs = {
|
|
add = { text = "+" },
|
|
change = { text = "~" },
|
|
delete = { text = "_" },
|
|
topdelete = { text = "‾" },
|
|
changedelete = { text = "~" },
|
|
},
|
|
})
|
|
'';
|
|
}
|
|
];
|
|
}
|