1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00

add lazygit configuration

This commit is contained in:
andrey_varnavskiy
2024-12-05 20:26:25 +05:00
parent d329da259b
commit 13673e00ab
2 changed files with 15 additions and 0 deletions

View File

@@ -6,6 +6,7 @@
./fuzzel.nix ./fuzzel.nix
./git.nix ./git.nix
./hyprland ./hyprland
./lazygit.nix
./neovim.nix ./neovim.nix
./starship.nix ./starship.nix
./swaync.nix ./swaync.nix

View File

@@ -0,0 +1,14 @@
{
programs.lazygit = {
enable = true;
settings = {
gui.showIcons = true;
gui.theme = {
lightTheme = false;
activeBorderColor = [ "green" "bold" ];
inactiveBorderColor = [ "grey" ];
selectedLineBgColor = [ "blue" ];
};
};
};
}