import changes from workstation
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,2 +1,4 @@
|
|||||||
lazy-lock.json
|
lazy-lock.json
|
||||||
.gitconfig.local
|
.gitconfig.local
|
||||||
|
|
||||||
|
k9s/.config/k9s/clusters
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
benchmarks:
|
|
||||||
defaults:
|
|
||||||
concurrency: 2
|
|
||||||
requests: 200
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
k9s:
|
|
||||||
cluster: arn:aws:eks:eu-west-1:996819778728:cluster/eu-01
|
|
||||||
namespace:
|
|
||||||
active: all
|
|
||||||
lockFavorites: false
|
|
||||||
favorites:
|
|
||||||
- all
|
|
||||||
- dt-account-monitoring-stag
|
|
||||||
- core-infra-system
|
|
||||||
- digitaltrust-stag
|
|
||||||
- default
|
|
||||||
view:
|
|
||||||
active: IngressRoute
|
|
||||||
featureGates:
|
|
||||||
nodeShell: false
|
|
||||||
proxy: null
|
|
||||||
@@ -94,6 +94,7 @@ vim.filetype.add({
|
|||||||
},
|
},
|
||||||
pattern = {
|
pattern = {
|
||||||
[".*/recipes/.*%.ya?ml"] = "gotmpl",
|
[".*/recipes/.*%.ya?ml"] = "gotmpl",
|
||||||
|
[".*%.sh.tmpl"] = "bash",
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@@ -79,6 +79,21 @@ set -g @tmux_window_name_max_name_len "100"
|
|||||||
|
|
||||||
set -g @plugin 'tmux-plugins/tmux-open'
|
set -g @plugin 'tmux-plugins/tmux-open'
|
||||||
|
|
||||||
|
set -g @plugin 'pschmitt/tmux-ssh-split'
|
||||||
|
set-option -g @ssh-split-keep-cwd "true"
|
||||||
|
set-option -g @ssh-split-keep-remote-cwd "true"
|
||||||
|
set-option -g @ssh-split-fail "true"
|
||||||
|
set-option -g @ssh-split-no-env "false"
|
||||||
|
set-option -g @ssh-split-no-shell "false"
|
||||||
|
set-option -g @ssh-split-strip-cmd "true"
|
||||||
|
set-option -g @ssh-split-verbose "true"
|
||||||
|
set-option -g @ssh-split-debug "false"
|
||||||
|
|
||||||
|
set-option -g @ssh-split-h-key "V"
|
||||||
|
set-option -g @ssh-split-v-key 'H'
|
||||||
|
set-option -g @ssh-split-w-key "N"
|
||||||
|
set-option -g @ssh-split-r-key "R"
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
###############################################################################
|
###############################################################################
|
||||||
### tmux-continuum ###
|
### tmux-continuum ###
|
||||||
|
|||||||
15
zsh/.zprofile
Normal file
15
zsh/.zprofile
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
export PATH=~/.local/bin:$PATH
|
||||||
|
export PATH=$DOTFILES/scripts/hcf/:$PATH
|
||||||
|
|
||||||
|
. "$HOME/.cargo/env"
|
||||||
|
|
||||||
|
case "$(uname -s)" in
|
||||||
|
Linux*) {
|
||||||
|
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
||||||
|
} ;;
|
||||||
|
Darwin*) {
|
||||||
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||||
|
export PATH="/opt/homebrew/bin/bash/bin:$PATH"
|
||||||
|
} ;;
|
||||||
|
*) ;;
|
||||||
|
esac
|
||||||
16
zsh/.zshenv
16
zsh/.zshenv
@@ -18,18 +18,4 @@ export MANPAGER='nvim +Man!'
|
|||||||
|
|
||||||
export SSH_ENV="$HOME/.ssh/agent-environment"
|
export SSH_ENV="$HOME/.ssh/agent-environment"
|
||||||
|
|
||||||
export PATH=~/.local/bin:$PATH
|
export GOPRIVATE=gitlab.company.com
|
||||||
export PATH=$DOTFILES/scripts/hcf/:$PATH
|
|
||||||
|
|
||||||
case "$(uname -s)" in
|
|
||||||
Linux*) {
|
|
||||||
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
|
||||||
} ;;
|
|
||||||
Darwin*) {
|
|
||||||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
||||||
export PATH="/opt/homebrew/opt/make/libexec/gnubin:$PATH"
|
|
||||||
} ;;
|
|
||||||
*) ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
. "$HOME/.cargo/env"
|
|
||||||
|
|||||||
Reference in New Issue
Block a user