31 lines
693 B
Nix
31 lines
693 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ ../../home-manager ];
|
||
|
|
||
|
within.powershell.enable = true;
|
||
|
within.vim.enable = true;
|
||
|
|
||
|
home.packages = [ pkgs.vim ];
|
||
|
|
||
|
programs.git = {
|
||
|
enable = true;
|
||
|
userName = "Victor Fernandes";
|
||
|
userEmail = "victorvalenca@gmail.com";
|
||
|
ignores = [ "*~" "*.swp" "*.#" ];
|
||
|
delta.enable = true;
|
||
|
extraConfig = {
|
||
|
core.editor = "vim";
|
||
|
credential.helper = "store --file ~/.git-credentials";
|
||
|
format.signoff = true;
|
||
|
init.defaultBranch = "main";
|
||
|
pull.rebase = "true";
|
||
|
|
||
|
url = {
|
||
|
"git@github.com:".insteadOf = "https://github.com/";
|
||
|
"git@ssh.tulpa.dev:".insteadOf = "https://tulpa.dev/";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|