feat(nvim): add init.lua
This commit is contained in:
parent
443488782f
commit
464060a355
10 changed files with 15 additions and 8 deletions
15
users/rafiq/modules/git.nix
Normal file
15
users/rafiq/modules/git.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
home.sessionVariables.GIT_CONFIG_GLOBAL = "$HOME/.config/git/config";
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Mohammad Rafiq";
|
||||
userEmail = "mohammadrafiq567@gmail.com";
|
||||
extraConfig = {
|
||||
init.defaultBranch = "prime";
|
||||
push.autoSetupRemote = true;
|
||||
pull.rebase = false;
|
||||
core.editor = "nvim";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue