1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 14:50:40 +02:00
oddlama_nix-config/users/myuser/neovim/git.nix
2024-03-02 13:24:30 +01:00

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;
};
}