shells/fish: add some aliases

Also:
- playbooks/packages: add helmfile
- ssh: don't add keys automatically (mainly for Vagrant)
This commit is contained in:
Hoang Nguyen 2022-04-06 22:45:07 +07:00
parent 6cbbe7adac
commit 0a92bdc4a6
No known key found for this signature in database
GPG Key ID: 813CF484F4993419
5 changed files with 14 additions and 6 deletions

View File

@ -1,8 +1,7 @@
FROM alpine:edge FROM alpine:edge
# Install dependencies # Install dependencies
RUN apk --no-cache update \ RUN apk --no-cache add \
&& apk --no-cache add \
ansible git fish build-base rsync \ ansible git fish build-base rsync \
cargo py3-virtualenv py3-setuptools \ cargo py3-virtualenv py3-setuptools \
python3-dev libffi-dev emacs-nox python3-dev libffi-dev emacs-nox

View File

@ -62,7 +62,7 @@
- role: qtcreator - role: qtcreator
tags: [ never, qtcreator ] tags: [ never, qtcreator ]
- role: qutebrowser - role: qutebrowser
tags: qutebrowser tags: [ never, qutebrowser ]
- role: ripgrep - role: ripgrep
tags: ripgrep tags: ripgrep
- role: river - role: river
@ -74,7 +74,7 @@
- role: terminal - role: terminal
tags: terminal tags: terminal
- role: translate-shell - role: translate-shell
tags: [ never, trans ] tags: trans
- role: vifm - role: vifm
tags: vifm tags: vifm
- role: waybar - role: waybar

View File

@ -49,6 +49,11 @@
command: command:
cmd: go install github.com/quay/clair/v4/cmd/clairctl@latest cmd: go install github.com/quay/clair/v4/cmd/clairctl@latest
- name: Install helmfile
tags: helmfile
command:
cmd: go install github.com/roboll/helmfile@latest
- name: Clean go modcache - name: Clean go modcache
command: command:
cmd: go clean -modcache cmd: go clean -modcache

View File

@ -1,5 +1,11 @@
# remap # remap
abbr ap ansible-playbook
abbr ad ansible-doc
abbr av ansible-vault
abbr hf helmfile
abbr h helm
abbr k kubectl abbr k kubectl
abbr t terraform
abbr x extract abbr x extract
alias cp='cp -vir' alias cp='cp -vir'
alias mv='mv -vi' alias mv='mv -vi'

View File

@ -18,8 +18,6 @@
blockinfile: blockinfile:
path: ~/.ssh/config path: ~/.ssh/config
block: | block: |
AddKeysToAgent yes
StrictHostKeyChecking accept-new StrictHostKeyChecking accept-new
insertbefore: BOF insertbefore: BOF
marker: '# {mark} CUSTOM SSH CONFIG' marker: '# {mark} CUSTOM SSH CONFIG'