sheldon
概要
インストール
バージョンの確認
code:shell
$ sheldon version
初期セットアップ
code:shell
# Zsh向けに (Bashの場合は--shell bashを指定します)
$ sheldon init --shell zsh
code:sh
eval "$(sheldon source)"
プラグインの管理
基本的な使い方
sheldon/plugins.tomlを編集します
code:sheldon/plugins.toml
# 例) forgitの設定
github = "wfxr/forgit" # 指定されたGitHubリポジトリからプラグインを読み込みます
tag = "24.05.0" # 必要に応じてGitタグなどを指定できます (特定のコミットを指定したい場合はrevオプション、ブランチを指定したい場合はbranchオプションで指定可能です)
またはsheldon addコマンドによってsheldon/plugins.tomlを更新することも可能です
code:shell
$ sheldon add forgit --github wfxr/forgit --tag 24.05.0 --use 'forgit.plugin.zsh'
その後、以下のコマンドを実行するとプラグインがインストールされます
code:shell
$ sheldon lock
~/.local/share/sheldon/plugins.lockにロックファイルが作成されます
プラグインの削除
code:shell
# sheldon/plugins.tomlから指定されたプラグインを削除します
$ sheldon remove forgit
# ロックファイルの更新とプラグインの削除を行います
$ sheldon lock
リンク