Compare commits

..

5 Commits

3 changed files with 6 additions and 6 deletions

View File

@@ -13,6 +13,7 @@ window:
y: 0 y: 0
dynamic_padding: false dynamic_padding: false
decorations: none decorations: none
opacity: 1.0
startup_mode: Maximized startup_mode: Maximized
scrolling: scrolling:
history: 10000 history: 10000
@@ -64,7 +65,6 @@ bell:
animation: EaseOutExpo animation: EaseOutExpo
duration: 0 duration: 0
color: '0xffffff' color: '0xffffff'
background_opacity: 1.0
mouse_bindings: mouse_bindings:
- mouse: Middle - mouse: Middle
action: PasteSelection action: PasteSelection

1
vimrc
View File

@@ -38,7 +38,6 @@ au BufRead,BufNewFile Pipfile setfiletype toml
au BufRead,BufNewFile Dockerfile* setfiletype dockerfile au BufRead,BufNewFile Dockerfile* setfiletype dockerfile
au BufRead,BufNewFile *.service setfiletype systemd au BufRead,BufNewFile *.service setfiletype systemd
au BufRead,BufNewFile .Rprofile setfiletype r au BufRead,BufNewFile .Rprofile setfiletype r
au BufWritePre *.py execute ':Black'
au QuickFixCmdPost *grep* cwindow au QuickFixCmdPost *grep* cwindow
au BufWritePre *.py execute ':Black' au BufWritePre *.py execute ':Black'

9
zshrc
View File

@@ -30,16 +30,17 @@ COMPLETION_WAITING_DOTS="true"
# DISABLE_UNTRACKED_FILES_DIRTY="true" # DISABLE_UNTRACKED_FILES_DIRTY="true"
path=( path=(
$HOME/bin
$HOME/go/bin
$HOME/.local/bin
$HOME/.cargo/bin $HOME/.cargo/bin
$HOME/.rbenv/bin $HOME/.rbenv/bin
$HOME/.rbenv/shims $HOME/.rbenv/shims
$HOME/.phpenv/bin $HOME/.phpenv/bin
$HOME/.pyenv/bin $HOME/.pyenv/bin
$HOME/.pyenv/shims
$HOME/.yarn/bin $HOME/.yarn/bin
$HOME/.pulumi/bin $HOME/.pulumi/bin
$HOME/bin
$HOME/go/bin
$HOME/.local/bin
$HOME/perl5/bin $HOME/perl5/bin
$HOME/Library/Python/3.8/bin $HOME/Library/Python/3.8/bin
/usr/local/opt/python@3.8/bin /usr/local/opt/python@3.8/bin
@@ -156,7 +157,7 @@ if [[ -f ~/.cargo/env ]]; then
fi fi
if gimme --version &>/dev/null; then if gimme --version &>/dev/null; then
eval "$(gimme '1.16.x')" 2>/dev/null eval "$(gimme '1.17.1')" 2>/dev/null
export GOPATH="$HOME/go" export GOPATH="$HOME/go"
fi fi