test
This commit is contained in:
parent
71f5e48ce4
commit
1c69095b11
2 changed files with 32 additions and 28 deletions
|
@ -1,8 +1,10 @@
|
|||
programs.git = {
|
||||
{ config, pkgs, ... }: {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "albert";
|
||||
userEmail = "albert@sysctl.io";
|
||||
extraConfig = {
|
||||
credential.helper = "cache --timeout=25920000";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
# https://nixos.wiki/wiki/Vim
|
||||
programs.vim = {
|
||||
{ config, pkgs, ... }: {
|
||||
# https://nixos.wiki/wiki/Vim
|
||||
programs.vim = {
|
||||
enable = true;
|
||||
plugins = with pkgs.vimPlugins; [ vim-airline ];
|
||||
settings = { ignorecase = true; };
|
||||
|
@ -18,4 +19,5 @@ programs.vim = {
|
|||
colorscheme slate
|
||||
set cursorline
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue