Added kitty config stuff
This commit is contained in:
parent
4774f629b4
commit
9f264fa462
2 changed files with 14 additions and 1 deletions
|
@ -188,7 +188,7 @@ bell_on_tab no
|
||||||
# The enabled window layouts. A comma separated list of layout names. The special value * means
|
# 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.
|
# all layouts. The first listed layout will be used as the startup layout.
|
||||||
# For a list of available layouts, see the README.
|
# 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.
|
# 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.
|
# Note that borders are displayed only when more than one window is visible. They are meant to separate multiple windows.
|
||||||
|
|
13
zsh/zshrc
13
zsh/zshrc
|
@ -53,4 +53,17 @@ antigen apply
|
||||||
alias 'onedrive-journal'="journalctl --user-unit onedrive -f"
|
alias 'onedrive-journal'="journalctl --user-unit onedrive -f"
|
||||||
|
|
||||||
eval $(thefuck --alias oops)
|
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
|
source $HOME/.zshenv
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue