1. Obsidian Terminalプラグインをインストールする 2. 設定の中にあるProfileを新規作成 3. Data>Dataの中にあるテキストボックス(中身はjson)の中にあるargsを書き換える 4. 新規作成したProfileを読み込み、ターミナルを開く ## 私の設定 ```json { "args": [ "-ExecutionPolicy", "RemoteSigne", "-Command", "gemini" ], "executable": "powershell", "name": "Powershell+Gemini", "platforms": { "darwin": false, "linux": false, "win32": true }, "pythonExecutable": "", "restoreHistory": false, "successExitCodes": [ "0", "SIGINT", "SIGTERM" ], "terminalOptions": { "documentOverride": null }, "type": "integrated", "useWin32Conhost": true } ``` ## リンク