feat: Nix integration and delta
This commit is contained in:
parent
a18aeba8ab
commit
160406ec2f
4 changed files with 25 additions and 9 deletions
|
@ -26,9 +26,4 @@
|
|||
|
||||
];
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Kyle Brown";
|
||||
userEmail = "kdb424@gmail.com";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
git-lfs
|
||||
|
||||
# editors
|
||||
vim
|
||||
#vim
|
||||
|
||||
# tui apps
|
||||
cmus
|
||||
|
|
|
@ -18,4 +18,28 @@
|
|||
git-cliff # useful commit messages
|
||||
];
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Kyle Brown";
|
||||
userEmail = "kdb424@gmail.com";
|
||||
lfs.enable = true;
|
||||
delta.enable = true;
|
||||
delta.options = {
|
||||
side-by-side = true;
|
||||
};
|
||||
ignores = [
|
||||
".swp"
|
||||
];
|
||||
};
|
||||
|
||||
programs.vim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
extraConfig = "
|
||||
set backspace=indent,eol,start
|
||||
syntax off
|
||||
silent! colorscheme wal
|
||||
";
|
||||
settings = { ignorecase = true; };
|
||||
};
|
||||
}
|
||||
|
|
3
.vimrc
3
.vimrc
|
@ -1,3 +0,0 @@
|
|||
set backspace=indent,eol,start
|
||||
syntax on
|
||||
silent! colorscheme wal
|
Loading…
Add table
Reference in a new issue