diff --git a/sheldon.toml b/sheldon.toml index 656c618..0d12d7a 100644 --- a/sheldon.toml +++ b/sheldon.toml @@ -31,9 +31,6 @@ github = "zsh-users/zsh-completions" [plugins.zsh-defer] github = "romkatv/zsh-defer" -[plugins.iterm2-shell-integration] -remote = "https://iterm2.com/shell_integration/zsh" - # Some of the functions may get used elsewhere # so we do not defer loading [plugins.functions] @@ -82,11 +79,11 @@ local = "~/.zsh/plugins" apply = ["defer"] [plugins.zoxide] -local = "~/.zsh/plugins" +github = "ajeetdsouza/zoxide" apply = ["defer"] [plugins.mcfly] -local = "~/.zsh/plugins" +github = "cantino/mcfly" apply = ["defer"] # This works best if it is placed last. diff --git a/zsh/plugins/fzf-completions.plugin.zsh b/zsh/plugins/fzf-completions.plugin.zsh deleted file mode 100644 index 907a9e1..0000000 --- a/zsh/plugins/fzf-completions.plugin.zsh +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env zsh - -# cURL completions copied from https://blog.revathskumar.com/2024/02/curl-fuzzy-search-options-using-fzf.html -_fzf_complete_curl() { - _fzf_complete --header-lines=1 --prompt="curl> " -- "$@" < <( - curl -h all - ) -} - -_fzf_complete_curl_post() { - awk '{print $1}' | cut -d ',' -f -1 -} diff --git a/zsh/plugins/mcfly.plugin.zsh b/zsh/plugins/mcfly.plugin.zsh deleted file mode 100644 index aa0c782..0000000 --- a/zsh/plugins/mcfly.plugin.zsh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env zsh - -# McFly -if (( ${+commands[mcfly]} )); then - eval "$(mcfly init zsh)" -fi diff --git a/zsh/plugins/zoxide.plugin.zsh b/zsh/plugins/zoxide.plugin.zsh deleted file mode 100644 index 9b6930d..0000000 --- a/zsh/plugins/zoxide.plugin.zsh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env zsh - -# zoxide - a better `cd` command -if (( ${+commands[zoxide]} )); then - eval "$(zoxide init zsh)" -fi