work
This commit is contained in:
parent
a191893dc6
commit
23d3b9c71f
4 changed files with 7 additions and 20 deletions
|
@ -48,15 +48,6 @@ scrolling:
|
||||||
# scrollback is enabled (history > 0).
|
# scrollback is enabled (history > 0).
|
||||||
multiplier: 3
|
multiplier: 3
|
||||||
|
|
||||||
# Faux Scrolling
|
|
||||||
#
|
|
||||||
# The `faux_multiplier` setting controls the number of lines the terminal
|
|
||||||
# should scroll when the alternate screen buffer is active. This is used
|
|
||||||
# to allow mouse scrolling for applications like `man`.
|
|
||||||
#
|
|
||||||
# Specifying `0` will disable faux scrolling.
|
|
||||||
faux_multiplier: 3
|
|
||||||
|
|
||||||
# Scroll to the bottom when new text is written to the terminal.
|
# Scroll to the bottom when new text is written to the terminal.
|
||||||
auto_scroll: false
|
auto_scroll: false
|
||||||
|
|
||||||
|
|
13
.zshrc
13
.zshrc
|
@ -247,11 +247,12 @@ export FZF_DEFAULT_COMMAND='fd --type f --hidden --follow --exclude .git'
|
||||||
|
|
||||||
# Kubernetes
|
# Kubernetes
|
||||||
command -v kubectl >/dev/null 2>&1 && source <(kubectl completion zsh)
|
command -v kubectl >/dev/null 2>&1 && source <(kubectl completion zsh)
|
||||||
command -v kops >/dev/null 2>&1 && source <(kops completion zsh)
|
|
||||||
command -v helm >/dev/null 2>&1 && source <(helm completion zsh)
|
command -v helm >/dev/null 2>&1 && source <(helm completion zsh)
|
||||||
command -v ark >/dev/null 2>&1 && source <(ark completion zsh)
|
command -v ark >/dev/null 2>&1 && source <(ark completion zsh)
|
||||||
command -v stern >/dev/null 2>&1 && source <(stern --completion zsh)
|
command -v stern >/dev/null 2>&1 && source <(stern --completion zsh)
|
||||||
|
|
||||||
|
export PATH=$HOME/.krew/bin:$PATH
|
||||||
|
|
||||||
# Flux
|
# Flux
|
||||||
export FLUX_FORWARD_NAMESPACE=flux
|
export FLUX_FORWARD_NAMESPACE=flux
|
||||||
|
|
||||||
|
@ -278,15 +279,9 @@ alias vim=nvim
|
||||||
alias xc='xclip -selection clipboard'
|
alias xc='xclip -selection clipboard'
|
||||||
# alias e='nvr --remote'
|
# alias e='nvr --remote'
|
||||||
|
|
||||||
## PlasticSCM
|
## JavaScript
|
||||||
|
|
||||||
export PATH="$HOME/plastic/client:$PATH"
|
export PATH="./node_modules/.bin:$PATH"
|
||||||
|
|
||||||
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
|
|
||||||
|
|
||||||
## Bazel
|
|
||||||
|
|
||||||
export BAZEL_PYTHON=python2
|
|
||||||
|
|
||||||
## Golang
|
## Golang
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
bw-ssh-add id_rsa id_rsa_embark
|
bw-ssh-add id_rsa id_rsa_embark
|
||||||
|
|
||||||
|
|
3
bin/clip
3
bin/clip
|
@ -1,3 +1,4 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -eo pipefail
|
set -e
|
||||||
|
# exec echo -en "\x1b]52;c;$(base64 -w0)\x07"
|
||||||
printf "\033]52;c;$(base64 -w0)\a"
|
printf "\033]52;c;$(base64 -w0)\a"
|
||||||
|
|
Loading…
Reference in a new issue