Added kitty config stuff

This commit is contained in:
acicchetti 2018-06-13 15:43:08 -04:00
parent 4774f629b4
commit 9f264fa462
2 changed files with 14 additions and 1 deletions

View file

@ -188,7 +188,7 @@ bell_on_tab no
# The enabled window layouts. A comma separated list of layout names. The special value * means
# all layouts. The first listed layout will be used as the startup layout.
# For a list of available layouts, see the README.
# enabled_layouts *
enabled_layouts tall,stack
# The width (in pts) of window borders. Will be rounded to the nearest number of pixels based on screen resolution.
# Note that borders are displayed only when more than one window is visible. They are meant to separate multiple windows.

View file

@ -53,4 +53,17 @@ antigen apply
alias 'onedrive-journal'="journalctl --user-unit onedrive -f"
eval $(thefuck --alias oops)
# pip 10.0.1 zsh completion start
function _pip_completion {
local words cword
read -Ac words
read -cn cword
reply=( $( COMP_WORDS="$words[*]" \
COMP_CWORD=$(( cword-1 )) \
PIP_AUTO_COMPLETE=1 $words[1] ) )
}
compctl -K _pip_completion pip
# pip zsh completion end
source $HOME/.zshenv