steady forward motion
This commit is contained in:
parent
dc1f213730
commit
01620abab3
9 changed files with 32 additions and 21 deletions
|
@ -30,7 +30,7 @@ window:
|
|||
y: 0
|
||||
|
||||
# Spread additional padding evenly around the terminal content.
|
||||
dynamic_padding: true
|
||||
dynamic_padding: false
|
||||
|
||||
# Window decorations
|
||||
#
|
||||
|
|
|
@ -2,6 +2,19 @@
|
|||
"coc.preferences.diagnostic.errorSign": "",
|
||||
"coc.preferences.diagnostic.warningSign": "",
|
||||
"coc.preferences.noselect": false,
|
||||
"json.format.enable": true,
|
||||
"json.schemas": [
|
||||
{
|
||||
"fileMatch": [
|
||||
"/deployment.jsonnet",
|
||||
"/deployment.json"
|
||||
],
|
||||
"url": "https://raw.githubusercontent.com/garethr/kubernetes-json-schema/master/v1.12.2/deployment.json"
|
||||
}
|
||||
],
|
||||
"yaml.schemas": {
|
||||
"kubernetes": "/*.yaml"
|
||||
},
|
||||
"languageserver": {
|
||||
"bash": {
|
||||
"command": "bash-language-server",
|
||||
|
@ -26,6 +39,10 @@
|
|||
"command": "bingo",
|
||||
"rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"],
|
||||
"filetypes": ["go"]
|
||||
},
|
||||
"jsonnet": {
|
||||
"command": "jsonnet-language-server",
|
||||
"filetypes": ["jsonnet"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -341,9 +341,9 @@ call <sid>hi("Type", s:cyan_700, "", "none")
|
|||
call <sid>hi("Typedef", "", "", "")
|
||||
call <sid>hi("goDeclaration", s:deep_purple_900, "", "none")
|
||||
call <sid>hi("goReceiverType", s:cyan_700, "", "none")
|
||||
call <sid>hi("goMethodCall", s:brown_700, "", "none")
|
||||
call <sid>hi("goMethodCall", s:purple_900, "", "none")
|
||||
call <sid>hi("goField", s:cyan_900, "", "none")
|
||||
call <sid>hi("goFunctionCall", s:blue_grey_800, "", "none")
|
||||
call <sid>hi("goFunctionCall", s:deep_purple_500, "", "none")
|
||||
call <sid>hi("goSameId", s:green_900, "#f7f9e0", "italic")
|
||||
call <sid>hi("GitGutterAdd", s:light_green_500, "", "")
|
||||
call <sid>hi("GitGutterChange",s:light_blue_300, "", "")
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[redshift]
|
||||
temp-day=3800
|
||||
temp-day=5500
|
||||
temp-night=2900
|
||||
brightness-day=0.99
|
||||
brightness-night=0.75
|
||||
|
|
|
@ -1,2 +1,4 @@
|
|||
rofi.font: IBM Plex Sans 16
|
||||
rofi.font: Blex Mono Regular 12
|
||||
rofi.dpi: 210
|
||||
rofi.theme: solarized_alternate
|
||||
rofi.columns: 1
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
[Unit]
|
||||
Description=Start VirtualBox clipboard service
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/bin/VBoxClient --nodaemon --clipboard
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
8
.xinitrc
8
.xinitrc
|
@ -1,11 +1,5 @@
|
|||
#!/bin/bash
|
||||
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
||||
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
|
||||
[ -x "$f" ] && . "$f"
|
||||
done
|
||||
unset f
|
||||
fi
|
||||
|
||||
xsetroot -solid \#99aab0
|
||||
xmodmap $HOME/.Xmodmap
|
||||
setxkbmap -option ctrl:nocaps,grp:switch,grp_led:scroll us,se
|
||||
alacritty -e tmux attach -t0 &
|
||||
|
|
8
.zshrc
8
.zshrc
|
@ -12,6 +12,7 @@ export PATH=$HOME/bin:$PATH:/bin:/sbin:/usr/sbin:/usr/local/sbin
|
|||
export EDITOR=nvim
|
||||
export DISPLAY=:0
|
||||
export GOPATH=$HOME
|
||||
export GDK_SCALE=2
|
||||
|
||||
fpath=(~/.zsh/functions $fpath)
|
||||
|
||||
|
@ -24,6 +25,7 @@ export HISTFILE=~/.zsh_history
|
|||
export HISTSIZE=20000
|
||||
export SAVEHIST=20000
|
||||
export LPASS_AGENT_TIMEOUT=900
|
||||
export WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'
|
||||
|
||||
typeset -A ZSH_HIGHLIGHT_STYLES
|
||||
export ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern)
|
||||
|
@ -241,6 +243,7 @@ export FZF_COMPLETION_TRIGGER=";"
|
|||
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 ark >/dev/null 2>&1 && source <(ark completion zsh)
|
||||
|
||||
[ -f /usr/share/bash-completion/completions/aws ] && source /usr/share/bash-completion/completions/aws
|
||||
[ -f /opt/google-cloud-sdk/completion.zsh.inc ] && source /opt/google-cloud-sdk/completion.zsh.inc
|
||||
|
@ -265,9 +268,12 @@ alias vim=nvim
|
|||
alias xc='xclip -selection clipboard'
|
||||
# alias e='nvr --remote'
|
||||
|
||||
## PlasticSCM
|
||||
|
||||
export PATH="$HOME/plastic/client:$PATH"
|
||||
|
||||
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
|
||||
|
||||
|
||||
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|
||||
|
||||
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
|
||||
|
|
BIN
bin/dwm
BIN
bin/dwm
Binary file not shown.
Loading…
Reference in a new issue