mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-10 14:50:40 +02:00
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;
|
|
};
|
|
}
|