From 9f264fa4624ff53d0ecfd17483c04e64c9ee3512 Mon Sep 17 00:00:00 2001 From: acicchetti Date: Wed, 13 Jun 2018 15:43:08 -0400 Subject: [PATCH] Added kitty config stuff --- kitty/kitty.conf | 2 +- zsh/zshrc | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/kitty/kitty.conf b/kitty/kitty.conf index de94431..2380658 100644 --- a/kitty/kitty.conf +++ b/kitty/kitty.conf @@ -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. diff --git a/zsh/zshrc b/zsh/zshrc index 17684f6..66a9da7 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -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 +