Update kitty bg color, nvim config. Add bgcolor function in zshrc for set specific bg color, hot keys for archiving in vifm

This commit is contained in:
Smirnov Olexandr 2020-12-13 20:52:29 +02:00
parent f5a07cf3b0
commit 4f7f44d7f4
10 changed files with 91 additions and 42 deletions

10
zshrc
View file

@ -1,7 +1,7 @@
export ZSH="$HOME/.oh-my-zsh"
export PATH="$HOME/bin:$PATH"
source ~/.env
source ~/.profile
#source ~/.env
#source ~/.profile
### Oh my zsh ###
@ -26,6 +26,12 @@ source $ZSH/oh-my-zsh.sh
export EDITOR="nvim"
export VISUAL="nvim"
### Function ###
function bgcolor {
convert -size 1x1 xc:$1 /tmp/bgc.png
feh --bg-tile /tmp/bgc.png
}
### Aliases ###
alias cls="clear"
alias :q="exit"