updated zsh, git, kitty

This commit is contained in:
neoteny 2022-01-07 23:14:58 +02:00
parent bf9e797a64
commit 044d39efcf
3 changed files with 11 additions and 3 deletions

View file

@ -9,6 +9,10 @@ italic_font auto
bold_italic_font auto bold_italic_font auto
disable_ligatures never disable_ligatures never
## Tabs
tab_bar_style fade
tab_fade 0.5 0.75 1
## Bell ## Bell
enable_audio_bell no enable_audio_bell no
visual_bell_duration 0 visual_bell_duration 0
@ -29,12 +33,14 @@ map ctrl+shift+2 goto_tab 2
map ctrl+shift+3 goto_tab 3 map ctrl+shift+3 goto_tab 3
map ctrl+shift+4 goto_tab 4 map ctrl+shift+4 goto_tab 4
map ctrl+shift+5 goto_tab 5 map ctrl+shift+5 goto_tab 5
map ctrl+equal change_font_size all +1
map ctrl+minus change_font_size all -1
map ctrl+backspace change_font_size all 0
## Colors ## Colors
background #1E1E29 background #1E1E29
# background #1e1e1e # background #1e1e1e
foreground #d4d4d4 foreground #d4d4d4
selection_background #d7ba7d selection_background #d7ba7d
selection_foreground #1e1e1e selection_foreground #1e1e1e

View file

@ -5,6 +5,9 @@
[github] [github]
name = Smirnov-O name = Smirnov-O
[gpg]
program = gpg2
[core] [core]
editor = nvim editor = nvim

3
zshrc
View file

@ -4,7 +4,7 @@ export PATH="$HOME/bin:$HOME/.local/bin:$HOME/.golang/bin:$GOPATH/bin:$HOME/.yar
export EDITOR="nvim" export EDITOR="nvim"
## Oh my zsh ## Oh my zsh
plugins=(git dotenv yarn extract) plugins=(dotenv extract)
ZSH_THEME="simple" ZSH_THEME="simple"
DISABLE_AUTO_TITLE="true" DISABLE_AUTO_TITLE="true"
source $HOME/.oh-my-zsh/oh-my-zsh.sh source $HOME/.oh-my-zsh/oh-my-zsh.sh
@ -23,4 +23,3 @@ alias asdfi=". /opt/asdf-vm/asdf.sh" sdki=". $HOME/.sdkman/bin/sdkman-init.sh"
if [[ -f "/bin/exa" ]]; then if [[ -f "/bin/exa" ]]; then
alias ls="exa -l" ll="ls" la="ls -a" alias ls="exa -l" ll="ls" la="ls -a"
fi fi