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
# Install dependencies
RUN apk --no-cache update \
&& apk --no-cache add \
RUN apk --no-cache add \
ansible git fish build-base rsync \
cargo py3-virtualenv py3-setuptools \
python3-dev libffi-dev emacs-nox

View File

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

View File

@ -49,6 +49,11 @@
command:
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
command:
cmd: go clean -modcache

View File

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

View File

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