merge: work

This commit is contained in:
AngeD 2022-10-07 11:35:44 +02:00
commit a2f759ffe9
6 changed files with 6 additions and 12 deletions

View File

@ -26,7 +26,7 @@ theme.fg_focus = "#ffffff"
theme.fg_urgent = "#ffffff" theme.fg_urgent = "#ffffff"
theme.fg_minimize = "#ffffff" theme.fg_minimize = "#ffffff"
theme.useless_gap = dpi(4) theme.useless_gap = dpi(0)
theme.border_width = dpi(2) theme.border_width = dpi(2)
theme.border_normal = "#000000" theme.border_normal = "#000000"
theme.border_focus = "#e00000" theme.border_focus = "#e00000"

View File

@ -52,9 +52,3 @@ vim.keymap.set("t", "<Esc>", "<C-\\><C-n>" )
-- remove trailing whitespaces -- remove trailing whitespaces
vim.keymap.set("n", "<Leader>f", "<cmd>%s/\\s\\+$//e<CR>") vim.keymap.set("n", "<Leader>f", "<cmd>%s/\\s\\+$//e<CR>")
-- copy entire file to graphical buffer
vim.keymap.set("n", "<Leader>y", 'ggVG"+y<C-o>' )
-- copy selection to graphical buffer
vim.keymap.set("v", "<Leader>y", '"+y' )

View File

@ -27,7 +27,5 @@ set $ws9 9:ETC
# border background text indicator child_border # border background text indicator child_border
client.focused #4c7899 #285577 #ffffff #2e9ef4 #e00000 client.focused #4c7899 #285577 #ffffff #2e9ef4 #e00000
default_border pixel default_border pixel
gaps inner 4
gaps outer 4
set $screen_timeout 600 set $screen_timeout 600

View File

@ -1,3 +1,8 @@
if [ ! -w '/var/run/docker.sock' ]; then
alias docker='sudo docker'
alias docker-compose='sudo docker-compose'
fi
alias dk='docker' alias dk='docker'
# containers # containers

View File

@ -14,8 +14,6 @@
alias kx='kubectx' alias kx='kubectx'
alias kn='kubens' alias kn='kubens'
alias kx-='kubectx -'
alias kn-='kubens -'
alias k='kubectl' alias k='kubectl'
alias ksys='kubectl --namespace=kube-system' alias ksys='kubectl --namespace=kube-system'
alias ka='kubectl apply --recursive -f' alias ka='kubectl apply --recursive -f'

View File

@ -1,5 +1,4 @@
export PYENV_ROOT="$HOME/.pyenv" export PYENV_ROOT="$HOME/.pyenv"
export VIRTUAL_ENV="$PYENV_ROOT"
path=(~/bin ~/.local/bin "$VIRTUAL_ENV"/bin $path) path=(~/bin ~/.local/bin "$VIRTUAL_ENV"/bin $path)