ln -s ~/dotfiles/oh-my-zsh/custom/plugins/timko ~/.oh-my-zsh/custom/plugins/timko
Then enable plugin in .zshrc
plugins = (
git
timko
)Note: Currently sourced in timko plugin. TODO: Find better way to do this.
mkdir -p ~/.fzf
git clone git@github.com:junegunn/fzf-git.sh.git ~/.fzf
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
Clone timko-vim
git clone git@github.com:timkomip/timko-vim.git ~/.config/nvimNavigate to a directory from anywhere in the filesystem.
There are two versions.
- yaml_teleport - uses yaml config
- json_teleport - use json config
Requires jq or yq to be installed.
yaml_teleport code # navigate to the ~/code directory from anywhere
yaml_teleport tmp # navigate to the ~/tmp directory from anywhere
# aliased as t
t code
t tmpLocations are defined in ~/.teleport.json. For example:
{
"tmp": "/Users/michael.timko/tmp",
"code": "/Users/michael.timko/code"
}places:
tmp: /Users/michael.timko/tmp
code: /Users/michael.timko/code