Compare commits
2 Commits
977cd4a99f
...
f6ace04d40
Author | SHA1 | Date |
---|---|---|
coolneng | f6ace04d40 | |
coolneng | 3df053ff6d |
|
@ -14,6 +14,14 @@
|
||||||
gpgsign = true
|
gpgsign = true
|
||||||
[gitlab]
|
[gitlab]
|
||||||
user = akasroua
|
user = akasroua
|
||||||
|
[lfs]
|
||||||
|
activitytimeout = 60
|
||||||
[filter "git-ignore-line.sh"]
|
[filter "git-ignore-line.sh"]
|
||||||
clean = /home/coolneng/.dotfiles/scripts/.local/share/scripts/git-ignore-line.sh
|
clean = /home/coolneng/.dotfiles/scripts/.local/share/scripts/git-ignore-line.sh
|
||||||
smudge = cat
|
smudge = cat
|
||||||
|
[filter "lfs"]
|
||||||
|
clean = git-lfs clean -- %f
|
||||||
|
smudge = git-lfs smudge -- %f
|
||||||
|
process = git-lfs filter-process
|
||||||
|
required = true
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@ usage() {
|
||||||
echo "type git: VCS project"
|
echo "type git: VCS project"
|
||||||
echo "type remote-git: VCS project with README, LICENSE and tests"
|
echo "type remote-git: VCS project with README, LICENSE and tests"
|
||||||
echo "type src: Simple coding project"
|
echo "type src: Simple coding project"
|
||||||
|
echo "type init: Initialize populated project"
|
||||||
echo "type doc: Assignment"
|
echo "type doc: Assignment"
|
||||||
echo "type nix-ld: Run unpatched programs with Nix"
|
echo "type nix-ld: Run unpatched programs with Nix"
|
||||||
echo "type datasci: Python data science project"
|
echo "type datasci: Python data science project"
|
||||||
|
@ -74,6 +75,9 @@ elif [ "$type" = "src" ]; then
|
||||||
create_dir src
|
create_dir src
|
||||||
touch .project
|
touch .project
|
||||||
direnv_integration "nix"
|
direnv_integration "nix"
|
||||||
|
elif [ "$type" = "init" ]; then
|
||||||
|
touch .project
|
||||||
|
direnv_integration "nix"
|
||||||
elif [ "$type" = "nix-ld" ]; then
|
elif [ "$type" = "nix-ld" ]; then
|
||||||
copy_nix_files "nix-ld"
|
copy_nix_files "nix-ld"
|
||||||
direnv_integration "nix"
|
direnv_integration "nix"
|
||||||
|
|
Loading…
Reference in New Issue