alacritty: more keybindings; zsh: add texbin

This commit is contained in:
2019-07-05 10:31:00 +02:00
parent f72d658554
commit 7c208e926b
2 changed files with 14 additions and 5 deletions

View File

@@ -31,7 +31,7 @@ colors:
white: '0xa0a0a0' white: '0xa0a0a0'
yellow: '0xcca200' yellow: '0xcca200'
primary: primary:
background: '0xedf0ef' background: '0xf1f0eb'
foreground: '0x333333' foreground: '0x333333'
cursor_style: Block cursor_style: Block
custom_cursor_colors: true custom_cursor_colors: true
@@ -66,9 +66,6 @@ font:
use_thin_strokes: true use_thin_strokes: true
hide_cursor_when_typing: false hide_cursor_when_typing: false
key_bindings: key_bindings:
- action: Paste
key: V
mods: Command
- action: Copy - action: Copy
key: C key: C
mods: Command mods: Command
@@ -390,6 +387,17 @@ key_bindings:
- action: SpawnNewInstance - action: SpawnNewInstance
key: N key: N
mods: Command mods: Command
- command:
args: []
program: /usr/local/bin/alacritty-config-gui
key: Return
mods: Command
- action: Paste
key: V
mods: Command
- chars: \
key: Y
mods: Alt
live_config_reload: true live_config_reload: true
mouse: mouse:
double_click: double_click:

3
zshrc
View File

@@ -22,9 +22,10 @@ bindkey -e
export HOMEBREW_NO_ANALYTICS=1 export HOMEBREW_NO_ANALYTICS=1
export GOPATH=~/.go export GOPATH=~/.go
export GOBIN=$GOPATH/bin export GOBIN=$GOPATH/bin
export TEXBIN=/Library/TeX/texbin/
export GHC_HOME=/usr/local/bin export GHC_HOME=/usr/local/bin
export CABAL_HOME=$HOME/.cabal/ export CABAL_HOME=$HOME/.cabal/
export PATH=$GHC_HOME:$PATH:$CABAL_HOME/bin:/opt/local/bin:/usr/local/sbin:/usr/local/opt/llvm/bin:~/.local/bin:$GOBIN:~/.cargo/bin export PATH=$GHC_HOME:$PATH:$CABAL_HOME/bin:/opt/local/bin:/usr/local/sbin:/usr/local/opt/llvm/bin:~/.local/bin:$GOBIN:~/.cargo/bin:$TEXBIN
export MANPATH=$MANPATH:/opt/local/share/man:/usr/local/opt/erlang/lib/erlang/man export MANPATH=$MANPATH:/opt/local/share/man:/usr/local/opt/erlang/lib/erlang/man
export INFOPATH=$INFOPATH:/opt/local/share/info export INFOPATH=$INFOPATH:/opt/local/share/info
export PYTHONSTARTUP=~/.pythonrc export PYTHONSTARTUP=~/.pythonrc