Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
cappyzawa committed Nov 11, 2023
1 parent fa3fe71 commit a0eb611
Show file tree
Hide file tree
Showing 11 changed files with 433 additions and 393 deletions.
6 changes: 3 additions & 3 deletions .bash_profile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## switch to zsh (if exists)
if [ -n "$PS1" ]; then # interactive only
for prog in /usr/bin/zsh /bin/zsh /usr/local/bin/zsh; do
[ -x "$prog" ] && exec "$prog" "$@"
done
for prog in /usr/bin/zsh /bin/zsh /usr/local/bin/zsh; do
[ -x "$prog" ] && exec "$prog" "$@"
done
fi

complete -C /usr/local/bin/vault vault
Expand Down
6 changes: 6 additions & 0 deletions .config/afx/aqua.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,14 @@ github:
AQUA_CONFIG: $XDG_CONFIG_HOME/aqua/aqua.yaml
AQUA_PROGRESS_BAR: "true"
AQUA_POLICY_CONFIG: $XDG_CONFIG_HOME/aqua/policy.yaml
EDITOR: nvim
link:
- from: "**/aqua"
to: aqua
alias:
k: kubectl
ls: exa
lg: lazygit
ld: lazydocker
vim: nvim
vi: command vim
10 changes: 6 additions & 4 deletions .config/aqua/aqua.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ registries:
private: true
packages:
- import: ./private/aqua.yaml
- name: cli/cli@v2.37.0
- name: cli/cli@v2.38.0
- name: junegunn/fzf@0.43.0
- name: starship/starship@v1.16.0
- name: hashicorp/terraform@v1.6.2
- name: hashicorp/terraform@v1.6.3
- name: jqlang/jq@jq-1.7
- name: kubernetes/kubectl@v1.25.15
- name: kubernetes-sigs/kustomize@kustomize/v5.2.1
Expand All @@ -44,8 +44,8 @@ packages:
- name: mvdan/sh@v3.7.0
- name: stern/stern@v1.26.0
- name: kubernetes-sigs/kind@v0.20.0
- name: cloudfoundry/bosh-cli@v7.4.0
- name: denoland/deno@v1.37.2
- name: cloudfoundry/bosh-cli@v7.4.1
- name: denoland/deno@v1.38.0
- name: cue-lang/cue@v0.6.0
- name: ogham/exa@v0.10.1
- name: open-policy-agent/conftest@v0.46.0
Expand All @@ -71,3 +71,5 @@ packages:
- name: tilt-dev/ctlptl@v0.8.22
- name: protocolbuffers/protobuf/protoc@v24.4
- name: protocolbuffers/protobuf-go/protoc-gen-go@v1.31.0
- name: neovim/neovim@stable
registry: custom
30 changes: 30 additions & 0 deletions .config/aqua/registry.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,34 @@
packages:
- type: github_release
repo_owner: neovim
repo_name: neovim
description: Hyperextensible Vim-based text editor
supported_envs:
- darwin
- linux
- amd64
replacements:
windows: win64
linux: linux64
darwin: macos
asset: nvim-{{.OS}}.{{.Format}}
format: tar.gz
files:
- name: nvim
src: nvim-{{.OS}}/bin/nvim
overrides:
- goos: windows
format: zip
version_constraint: semver(">= 0.7.2")
version_overrides:
- version_constraint: "true"
overrides:
- goos: windows
format: zip
# - goos: darwin
# files:
# - name: nvim
# src: nvim-osx64/bin/nvim
- type: go_install
name: sigs.k8s.io/controller-runtime/tools/setup-envtest
repo_owner: kubernetes-sigs
Expand Down
2 changes: 1 addition & 1 deletion .config/github-copilot/versions.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"copilot.vim":"1.10.0","copilot.lua":"1.11.1"}
{"copilot.vim":"1.10.0","copilot.lua":"1.11.4"}
14 changes: 7 additions & 7 deletions .zshenv
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ path=( \
~/bin(N-/) \
~/.local/share/aquaproj-aqua/bin(N-/) \
~/ghq/bin(N-/) \
/opt/homebrew/bin(N-/) \
/usr/local/bin(N-/) \
/usr/sbin(N-/) \
~/.local/bin(N-/) \
Expand All @@ -17,7 +18,6 @@ path=( \
/usr/local/opt/llvm/bin(N-/) \
~/.gem/ruby/2.6.0/bin(N-/) \
~/Library/Python/3.9/bin(N-/) \
/opt/homebrew/bin(N-/) \
/opt/homebrew/opt/openjdk@17/bin(N-/) \
$HOME/.krew/bin(N-/) \
~/.luarocks/bin(N-/) \
Expand All @@ -30,12 +30,12 @@ path=( \

typeset -gx -U fpath
fpath=( \
~/.zsh/Completion(N-/) \
~/.zsh/functions(N-/) \
~/.zsh/plugins/zsh-completions(N-/) \
/usr/local/share/zsh/site-functions(N-/) \
$fpath \
)
~/.zsh/Completion(N-/) \
~/.zsh/functions(N-/) \
~/.zsh/plugins/zsh-completions(N-/) \
/usr/local/share/zsh/site-functions(N-/) \
$fpath \
)

# History
# History file
Expand Down
2 changes: 0 additions & 2 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ if ! command -v afx &> /dev/null; then
fi

source <(afx init)
source <(afx completion zsh)

# word split: `-`, `_`, `.`, `=`
export WORDCHARS='*?[]~&;!#$%^(){}<>'

Expand Down
Loading

0 comments on commit a0eb611

Please sign in to comment.