lnk: sync configuration files
parent
d8d006edec
commit
6e7fc29f09
|
|
@ -221,6 +221,16 @@
|
||||||
"binary": "keyb",
|
"binary": "keyb",
|
||||||
"url": "https://api.github.com/repos/kencx/keyb/releases/assets/128565999",
|
"url": "https://api.github.com/repos/kencx/keyb/releases/assets/128565999",
|
||||||
"binaryHash": "8b43455d23716bb6ae8abea97426f1f55ad3a110de9a6e967579354657e33680"
|
"binaryHash": "8b43455d23716bb6ae8abea97426f1f55ad3a110de9a6e967579354657e33680"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "github",
|
||||||
|
"owner": "denisidoro",
|
||||||
|
"repo": "navi",
|
||||||
|
"tag": "v2.24.0",
|
||||||
|
"asset": "navi-v2.24.0-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"binary": "navi",
|
||||||
|
"url": "https://api.github.com/repos/denisidoro/navi/releases/assets/224750154",
|
||||||
|
"binaryHash": "c643ff670ced4b47887c887ff0877c156497642b8d25dd9ae279d1d68c27e9bb"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
20
.zshrc
20
.zshrc
|
|
@ -48,8 +48,20 @@ function zvm_after_init() {
|
||||||
# so we can use stow to install the man page. The stow binary still has
|
# so we can use stow to install the man page. The stow binary still has
|
||||||
# to be installed seperately.
|
# to be installed seperately.
|
||||||
source "$STOW_DIR/skim/shell/key-bindings.zsh"
|
source "$STOW_DIR/skim/shell/key-bindings.zsh"
|
||||||
|
|
||||||
|
# 'navi' interactive cheatsheet (https://github.com/denisidoro/navi)
|
||||||
|
# the plugin binds ^g to the widget so we need to source it here
|
||||||
|
eval "$(navi widget zsh)"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export NVM_DIR="$HOME/.config/nvm"
|
||||||
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||||
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||||
|
|
||||||
|
# 'try' utility (https://github.com/tobi/try)
|
||||||
|
# creates/manages directories for experiments
|
||||||
|
eval "$(~/.local/bin/try.rb init ~/projects/tries)"
|
||||||
|
|
||||||
# Source anything in .zshrc.d.
|
# Source anything in .zshrc.d.
|
||||||
for _rc in ${ZDOTDIR:-$HOME}/.zshrc.d/*.zsh; do
|
for _rc in ${ZDOTDIR:-$HOME}/.zshrc.d/*.zsh; do
|
||||||
# Ignore tilde files.
|
# Ignore tilde files.
|
||||||
|
|
@ -59,11 +71,3 @@ for _rc in ${ZDOTDIR:-$HOME}/.zshrc.d/*.zsh; do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
unset _rc
|
unset _rc
|
||||||
|
|
||||||
export NVM_DIR="$HOME/.config/nvm"
|
|
||||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
|
||||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
|
||||||
|
|
||||||
# 'try' utility (https://github.com/tobi/try)
|
|
||||||
# creates/manages directories for experiments
|
|
||||||
eval "$(~/.local/bin/try.rb init ~/projects/tries)"
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -383,6 +383,15 @@ font_size 13.5
|
||||||
#: platforms such as macOS and Wayland. Use negative numbers to change
|
#: platforms such as macOS and Wayland. Use negative numbers to change
|
||||||
#: scroll direction.
|
#: scroll direction.
|
||||||
|
|
||||||
|
# kitty-scrollback.nvim Kitten alias
|
||||||
|
action_alias kitty_scrollback_nvim kitten /home/bryan/.local/share/nvim/lazy/kitty-scrollback.nvim/python/kitty_scrollback_nvim.py
|
||||||
|
# Browse scrollback buffer in nvim
|
||||||
|
map kitty_mod+h kitty_scrollback_nvim
|
||||||
|
# Browse output of the last shell command in nvim
|
||||||
|
map kitty_mod+g kitty_scrollback_nvim --config ksb_builtin_last_cmd_output
|
||||||
|
# Show clicked command output in nvim
|
||||||
|
mouse_map ctrl+shift+right press ungrabbed combine : mouse_select_command_output : kitty_scrollback_nvim --config ksb_builtin_last_visited_cmd_output
|
||||||
|
|
||||||
#: }}}
|
#: }}}
|
||||||
|
|
||||||
#: Mouse {{{
|
#: Mouse {{{
|
||||||
|
|
@ -2602,3 +2611,4 @@ bold_italic_font auto
|
||||||
# Kitty-Flow
|
# Kitty-Flow
|
||||||
include current-theme.conf
|
include current-theme.conf
|
||||||
# END_KITTY_THEME
|
# END_KITTY_THEME
|
||||||
|
# SetUserVar=in_editor
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
]1337;SetUserVar=in_editor
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
]1337;SetUserVar=in_editor
|
||||||
Loading…
Reference in New Issue