meta:install.conf: Set defaults

When executing commands, enable std{out,err} and create parent
directories for links.
This commit is contained in:
2022-07-12 21:26:48 +02:00
parent 11c8345566
commit 9586533e61

View File

@@ -1,44 +1,36 @@
- default:
shell:
stdout: true
stderr: true
link:
create: true
- shell: - shell:
- -
command: command -v zsh >/dev/null && chsh -s "$(command -v zsh)" command: command -v zsh >/dev/null && chsh -s "$(command -v zsh)"
description: Changing login shell to zsh description: Changing login shell to zsh
stdin: true stdin: true
stdout: true
stderr: true
- -
command: meta/git-remote command: meta/git-remote
description: Updating git remote to use ssh description: Updating git remote to use ssh
stderr: true
- -
command: meta/submodules --init command: meta/submodules --init
description: Pulling all submodules description: Pulling all submodules
stdout: true
stderr: true
- -
command: meta/archive command: meta/archive
description: Archiving all files where links will be placed. description: Archiving all files where links will be placed.
stdout: true
stderr: true
- -
command: .local/share/fzf-repo/install --bin command: .local/share/fzf-repo/install --bin
description: Pulling fzf binary description: Pulling fzf binary
stdout: true
stderr: true
- -
command: cd .local/share/git/plugins/git-filter-repo && make Documentation/man1/git-filter-repo.1 command: cd .local/share/git/plugins/git-filter-repo && make Documentation/man1/git-filter-repo.1
description: Building git-filter-repo manpage description: Building git-filter-repo manpage
stdout: true
stderr: true
- -
command: cd .config/zsh/plugins/stderred && make command: cd .config/zsh/plugins/stderred && make
description: Building stderred description: Building stderred
stdout: true
stderr: true
- -
command: cd .config/vim/pack/plugins/opt/coc.nvim && yarn install --frozen-lockfile command: cd .config/vim/pack/plugins/opt/coc.nvim && yarn install --frozen-lockfile
description: Installing coc.nvim description: Installing coc.nvim
stdout: true
stderr: true
- -
command: ! command -v gpg >/dev/null 2>&1 || mkdir -p ~/.local/share/gnupg command: ! command -v gpg >/dev/null 2>&1 || mkdir -p ~/.local/share/gnupg
description: Creating GNUPGHOME if necessary description: Creating GNUPGHOME if necessary
@@ -50,8 +42,6 @@
- -
command: mandb command: mandb
description: Update the manual page index cache description: Update the manual page index cache
stdout: true
stderr: true
- create: - create:
- ~/docs - ~/docs
- ~/downs - ~/downs
@@ -66,7 +56,6 @@
~/.zshenv: ~/.zshenv:
path: .zshenv path: .zshenv
~/.config/: ~/.config/:
create: true
glob: true glob: true
path: .config/* path: .config/*
~/.config/: ~/.config/:
@@ -74,28 +63,22 @@
ignore-missing: true ignore-missing: true
path: .config/.* path: .config/.*
~/.local/bin/: ~/.local/bin/:
create: true
glob: true glob: true
exclude: [ .local/bin/fzf-repo ] exclude: [ .local/bin/fzf-repo ]
path: .local/bin/* path: .local/bin/*
~/.local/share/direnv: ~/.local/share/direnv:
path: .local/share/direnv path: .local/share/direnv
~/.local/share/man/man1/: ~/.local/share/man/man1/:
create: true
glob: true glob: true
path: .local/share/man/man1/* path: .local/share/man/man1/*
~/.local/share/nvim/site/pack: ~/.local/share/nvim/site/pack:
create: true
path: .config/vim/pack path: .config/vim/pack
~/.local/share/gnupg/gpg-agent.conf: ~/.local/share/gnupg/gpg-agent.conf:
create: true
path: .local/share/gnupg/gpg-agent.conf path: .local/share/gnupg/gpg-agent.conf
~/.ssh/: ~/.ssh/:
create: true
glob: true glob: true
path: .ssh/* path: .ssh/*
.git/hooks: .git/hooks:
create: true
relative: true relative: true
path: ../meta/git/hooks path: ../meta/git/hooks
.envrc: .envrc: