diff --git a/.gitignore b/.gitignore index 8bb53c3..b171063 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ lazy-lock.json .gitconfig.local + +k9s/.config/k9s/clusters diff --git a/k9s/.config/k9s/clusters/arn-aws-eks-eu-west-1-996819778728-cluster-eu-01/arn-aws-eks-eu-west-1-996819778728-cluster-eu-01/benchmarks.yaml b/k9s/.config/k9s/clusters/arn-aws-eks-eu-west-1-996819778728-cluster-eu-01/arn-aws-eks-eu-west-1-996819778728-cluster-eu-01/benchmarks.yaml deleted file mode 100644 index 9efba4c..0000000 --- a/k9s/.config/k9s/clusters/arn-aws-eks-eu-west-1-996819778728-cluster-eu-01/arn-aws-eks-eu-west-1-996819778728-cluster-eu-01/benchmarks.yaml +++ /dev/null @@ -1,4 +0,0 @@ -benchmarks: - defaults: - concurrency: 2 - requests: 200 \ No newline at end of file diff --git a/k9s/.config/k9s/clusters/arn-aws-eks-eu-west-1-996819778728-cluster-eu-01/arn-aws-eks-eu-west-1-996819778728-cluster-eu-01/config.yaml b/k9s/.config/k9s/clusters/arn-aws-eks-eu-west-1-996819778728-cluster-eu-01/arn-aws-eks-eu-west-1-996819778728-cluster-eu-01/config.yaml deleted file mode 100644 index 63c8343..0000000 --- a/k9s/.config/k9s/clusters/arn-aws-eks-eu-west-1-996819778728-cluster-eu-01/arn-aws-eks-eu-west-1-996819778728-cluster-eu-01/config.yaml +++ /dev/null @@ -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 diff --git a/nvim/.config/nvim/lua/ink/init.lua b/nvim/.config/nvim/lua/ink/init.lua index ce33634..cddf5b3 100644 --- a/nvim/.config/nvim/lua/ink/init.lua +++ b/nvim/.config/nvim/lua/ink/init.lua @@ -94,6 +94,7 @@ vim.filetype.add({ }, pattern = { [".*/recipes/.*%.ya?ml"] = "gotmpl", + [".*%.sh.tmpl"] = "bash", }, }) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 102ec24..83deaf1 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -79,6 +79,21 @@ set -g @tmux_window_name_max_name_len "100" 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 ### diff --git a/zsh/.zprofile b/zsh/.zprofile new file mode 100644 index 0000000..21ebb10 --- /dev/null +++ b/zsh/.zprofile @@ -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 diff --git a/zsh/.zshenv b/zsh/.zshenv index 0c0c613..25b9a77 100644 --- a/zsh/.zshenv +++ b/zsh/.zshenv @@ -18,18 +18,4 @@ export MANPAGER='nvim +Man!' export SSH_ENV="$HOME/.ssh/agent-environment" -export PATH=~/.local/bin:$PATH -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" +export GOPRIVATE=gitlab.company.com