{"id":49594298,"url":"https://github.com/dantuck/dotfiles","last_synced_at":"2026-05-04T03:08:56.051Z","repository":{"id":65568830,"uuid":"10492668","full_name":"dantuck/dotfiles","owner":"dantuck","description":"Mirror of https://gitlab.com/dantuck/dotfiles","archived":false,"fork":false,"pushed_at":"2024-04-29T17:15:40.000Z","size":253,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-04-30T15:55:17.754Z","etag":null,"topics":["dotfiles","dotfiles-linux","dotfiles-macos","fishshell"],"latest_commit_sha":null,"homepage":"https://gitlab.com/dantuck/dotfiles","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dantuck.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2013-06-05T01:38:19.000Z","updated_at":"2024-04-29T17:15:43.000Z","dependencies_parsed_at":"2024-01-26T22:24:08.599Z","dependency_job_id":null,"html_url":"https://github.com/dantuck/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dantuck/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantuck%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantuck%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantuck%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantuck%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dantuck","download_url":"https://codeload.github.com/dantuck/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantuck%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32592741,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"online","status_checked_at":"2026-05-04T02:00:06.625Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["dotfiles","dotfiles-linux","dotfiles-macos","fishshell"],"created_at":"2026-05-04T03:08:55.530Z","updated_at":"2026-05-04T03:08:56.046Z","avatar_url":"https://github.com/dantuck.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Recommended Software\n\nFor both Linux and macOS:\n\n- [`starship.rs`](https://starship.rs) the shell we are using;\n- [`bat`](https://github.com/sharkdp/bat) a `cat` with wings;\n- [`delta`](https://github.com/dandavison/delta) for better git diffs;\n- [`pnpm`](https://pnpm.io/) fast, disk space efficient package manager\n- [`rust-lang`](https://www.rust-lang.org/learn/get-started) Quickly set up a Rust development environment and write a small app!\n- [`helix`](https://helix-editor.com/) a post-modern text editor. \n- [`zellij`](https://zellij.dev) a terminal workspace with batteries included. \n\nFor macOS:\n\n- `kubectl` - `brew install kubernetes-cli`\n- `kubectx` - `brew install kubectx`\n- `aws-iam-authenticator` - `brew install aws-iam-authenticator`\n- `kubefwd` - `brew install txn2/tap/kubefwd`\n\n## Optional Software\n\nFor both Linux and macOS:\n\n- [`Apollo Rover CLI`](https://www.apollographql.com/docs/rover/getting-started/) is a CLI for managing and maintaining graphs with [Apollo Studio](https://www.apollographql.com/docs/studio/)\n\n## Fish\n\n### Getting started\n\n```fish\ncurl -fsSL https://codeberg.org/tuck/dotfiles/raw/branch/main/install.sh | sh\n```\n\nor\n\n```bash\nsh -c \"$(curl -fsSL https://codeberg.org/tuck/dotfiles/raw/branch/main/install.sh)\"\n```\n\n### Install fish\n\nOfficial [website](https://fishshell.com) or check out some snippets below.\n\n\u003cdetails\u003e\n\u003csummary\u003emacOS with homebrew\u003c/summary\u003e\n\n```bash\nbrew update \u0026\u0026 brew install fish\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eUbuntu: fish shell - 3.x release series \u003c/summary\u003e\n\n```bash\nsudo apt-add-repository ppa:fish-shell/release-3\nsudo apt-get update\nsudo apt-get install fish\n\nchsh -s /usr/bin/fish\n```\n\n\u003c/details\u003e\n\n#### Customizations\n\n`fish` plugins are managed by `fisher` and can be cloned directly into `~/.extra/plugins` or added directly to a new file `~/.extra/plugins/fish_plugins`\n\n```bash\njorgebucaran/fisher\njorgebucaran/nvm.fish\njorgebucaran/replay.fish\n```\n\nAdd custom functions to `~/.extra/functions`\n\n## ZSH\n\nThis is really not maintained. I have been transitioning over to fish shell and while doing so have started to restructure dotfiles thus making the zsh install untested. Use at your own risk.\n\n### Getting started\n\n\u003c!-- ```bash\nsh -c \"$(curl -fsSL https://codeberg.org/tuck/dotfiles/raw/branch/main/fish/scripts/install.sh)\"\n``` --\u003e\n\n### Setup dotfile components\n\n*NOTE*: Make sure if needed to create local files first:\n\n- git: [user] name and email and [url] instead of mapping\n- zsh: environment variables with usernames and tokens set.\n\n```shell\n.dotfiles/git/config.local\n.dotfiles/zsh/local.zsh\n```\n\n### Install dotfiles\n\n```\ncd ~/.dotfiles \u0026\u0026 . ./bootstrap\n```\n\n## Credits\n\nInfluenced by and examples taken from:\n\n- [mnarrell](https://github.com/mnarrell/dotfiles)\n- [kwtucker](https://github.com/kwtucker/dotfiles)\n- [caarlos0](https://github.com/caarlos0/dotfiles.fish) ([LICENSE](license/LICENSE-CARLOSBECKER.md))\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdantuck%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdantuck%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdantuck%2Fdotfiles/lists"}