{"id":20497552,"url":"https://github.com/ymdarake/dotfiles","last_synced_at":"2026-03-19T16:06:04.718Z","repository":{"id":126623822,"uuid":"159803340","full_name":"ymdarake/dotfiles","owner":"ymdarake","description":null,"archived":false,"fork":false,"pushed_at":"2025-01-15T11:47:50.000Z","size":42,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-16T06:28:35.414Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vim Script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ymdarake.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-11-30T09:54:51.000Z","updated_at":"2025-01-15T11:47:51.000Z","dependencies_parsed_at":null,"dependency_job_id":"a36404cb-2bf6-4c9f-a6fa-e1dcfe7b6dde","html_url":"https://github.com/ymdarake/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ymdarake%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ymdarake%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ymdarake%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ymdarake%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ymdarake","download_url":"https://codeload.github.com/ymdarake/dotfiles/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242087912,"owners_count":20069722,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-15T18:11:25.351Z","updated_at":"2026-03-19T16:06:04.712Z","avatar_url":"https://github.com/ymdarake.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dotfiles\n\n個人の開発環境設定を管理するリポジトリです。\n\n## 📁 ディレクトリ構成\n\n- [`shell/`](./shell) - シェル設定（.zshrc, .bash_profile等）\n- [`git/`](./git) - Git設定（.gitconfig）\n- [`vim/`](./vim) - Vim設定（.vimrc）\n- [`nvim/`](./nvim) - Neovim設定（init.vim）\n- [`tmux/`](./tmux) - tmux設定（.tmux.conf）\n- [`vscode/`](./vscode) - VSCode設定（settings.json）\n- [`ssh/`](./ssh) - SSH設定（config）\n- [`claude/`](./claude) - Claude Code設定サンプル\n\n## 🚀 クイックスタート\n\n### 1. リポジトリのクローン\n\n```bash\ngit clone https://github.com/ymdarake/dotfiles.git ~/dotfiles\ncd ~/dotfiles\n```\n\n### 2. セットアップ\n\n#### 自動セットアップ（推奨）\n\n```bash\n./setup.sh\n```\n\n#### 手動セットアップ\n\n各ディレクトリのREADME.mdを参照して、必要な設定をシンボリックリンクで適用：\n\n```bash\n# 例: zsh設定\nln -s ~/dotfiles/shell/.zshrc ~/.zshrc\n\n# 例: git設定\nln -s ~/dotfiles/git/.gitconfig ~/.gitconfig\n\n# 例: Claude Code グローバル設定\nmkdir -p ~/.claude\nln -s ~/dotfiles/claude/global_CLAUDE.md ~/.claude/CLAUDE.md\n```\n\n## 📝 各設定の詳細\n\n各ディレクトリに詳細なREADME.mdがあります：\n\n- [Shell](./shell/README.md) - zshの設定とエイリアス\n- [Git](./git/README.md) - Gitのエイリアスと設定\n- [Vim](./vim/README.md) - Vimプラグインと設定\n- [Neovim](./nvim/README.md) - Neovim設定\n- [tmux](./tmux/README.md) - tmuxキーバインドと設定\n- [VSCode](./vscode/README.md) - VSCode拡張機能と設定\n- [SSH](./ssh/README.md) - SSH接続設定\n- [Claude Code](./claude/README.md) - Claude Code設定ガイド\n\n## 🔧 カスタマイズ\n\n### 機密情報の扱い\n\n機密情報（SSH秘密鍵、トークン等）は `.gitignore` で除外されています。\n個人情報を含む設定は `.example` ファイルを参考に作成してください。\n\n### 新しい設定の追加\n\n1. 専用ディレクトリを作成\n2. README.md で説明を記載\n3. サンプルファイルを用意\n4. シンボリックリンクコマンドを明記\n\n## 💡 便利なコマンド\n\n```bash\n# dotfilesリポジトリの更新を取得\ncd ~/dotfiles \u0026\u0026 git pull\n\n# 設定の再読み込み（zsh）\nsource ~/.zshrc\n\n# tmuxセッション開始\ntmux\n```\n\n## 📚 参考リンク\n\n- [GitHub Dotfiles Guide](https://dotfiles.github.io/)\n- [Claude Code Documentation](https://docs.claude.com/claude-code)\n\n## ライセンス\n\nMIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fymdarake%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fymdarake%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fymdarake%2Fdotfiles/lists"}