forked from mirrors_public/oddlama_nix-config
14 lines
238 B
Nix
14 lines
238 B
Nix
{
|
|
programs.nixvim.plugins = {
|
|
# Git status in signcolumn
|
|
gitsigns.enable = true;
|
|
|
|
# Git commands
|
|
fugitive.enable = true;
|
|
|
|
diffview.enable = true;
|
|
|
|
# Manage git from within neovim
|
|
neogit.enable = true;
|
|
};
|
|
}
|