{"id":15815537,"url":"https://github.com/andostronaut/dotfiles","last_synced_at":"2025-05-07T23:39:22.099Z","repository":{"id":191367824,"uuid":"684482081","full_name":"andostronaut/dotfiles","owner":"andostronaut","description":"This repository contains personalized configurations for the tools and applications I use on a daily basis. 🚀  ","archived":false,"fork":false,"pushed_at":"2025-04-08T11:06:24.000Z","size":234,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-07T23:39:06.562Z","etag":null,"topics":["asdf","bash","dotfiles","git","lazyvim","neovim","nvchad","nvim","tmux","zsh"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andostronaut.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-29T08:10:03.000Z","updated_at":"2025-04-08T11:06:28.000Z","dependencies_parsed_at":"2023-12-30T19:22:35.872Z","dependency_job_id":"7b6200f8-8271-48ff-966f-e17f31ff053b","html_url":"https://github.com/andostronaut/dotfiles","commit_stats":null,"previous_names":["iamando/dotfiles","andostronaut/dotfiles"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andostronaut%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andostronaut%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andostronaut%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andostronaut%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andostronaut","download_url":"https://codeload.github.com/andostronaut/dotfiles/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252973606,"owners_count":21834104,"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":["asdf","bash","dotfiles","git","lazyvim","neovim","nvchad","nvim","tmux","zsh"],"created_at":"2024-10-05T05:00:43.773Z","updated_at":"2025-05-07T23:39:22.080Z","avatar_url":"https://github.com/andostronaut.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg\n    src=\"./assets/banner.png\"\n    alt=\"dotfiles\"\n    style=\"width:100%;\"\n  /\u003e\n\u003c/p\u003e\n\n## Configure NVIM Config\n\nGo to the repo directory and use symlink for nvim config\n\n```sh\nln -s $(pwd)/.config/nvim ~/.config\nln -s $(pwd)/.config/terminalizer ~/.config\n```\n\n## Setup Homebrew\n\nInstall homebrew as Package Manager for mac to able to use brew command, check the documentation [here](https://brew.sh/)\n\n```sh\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"\n```\n\nAfter installing Homebrew, do\n\n```sh\nbrew bundle --file=/Brewfile\n```\n\n## Configure Zed\n\nCopy settings from zed [settings](.config/zed/settings.json) to .config/zed/settings.json\n\nOr, using symlink to link directly the folder to your config\n\n```sh\nln -s $(pwd)/.config/zed ~/.config\n```\n\n## Configure VSCode\n\nInstall VSCode from [here](https://code.visualstudio.com/) or using brew command for mac\n\n```sh\nbrew install --cask visual-studio-code\n```\n\nCopy settings from vscode [settings](.config/vscode/settings.json) to VSCode Settings\n\nInstall all extensions that we needed with this command\n\n```sh\ncat .config/vscode/extensions.list | xargs -L 1 code --install-extension\n```\n\n## Setup TMUX\n\n### Relevant Files\n\n- [.tmux.conf](.tmux.conf)\n\nInstall TMUX with Homebrew:\n\n```sh\nbrew install tmux\n```\n\nInstall Tpm (TMUX Package Manager):\n\n```sh\ngit clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm\n```\n\nInstall all plugins in TMUX with command: `Ctrl-a + Shift-i`\n\n## Setup Neovim\n\n### Relevant Files\n\n- [.config/nvim](.config/nvim)\n\n### Setup Requires\n\n- True Color Terminal Like: [iTerm2](https://iterm2.com/)\n- [Neovim](https://neovim.io/) (Version 0.9 or Later)\n- [Nerd Font](https://www.nerdfonts.com/) - I use Meslo Nerd Font\n- [Ripgrep](https://github.com/BurntSushi/ripgrep) - For Telescope Fuzzy Finder\n- XCode Command Line Tools\n\nInstall Deps with Homebrew:\n\n```sh\nbrew install --cask iterm2\n\nbrew install node vim neovim tree-sitter git fd ripgrep lazygit lua luajit\n```\n\nFor XCode Command Line Tools do:\n\n```bash\nxcode-select --install\n```\n\nOptional deps\n\n```sh\nbrew install lsd eza tree\n```\n\nIf you have already installed vim, create a symbolic link to map directly neovim with vim\n\n```sh\nln -s $(which nvim) /opt/homebrew/bin/vim\n```\n\n## Setup Terminalizer\n\nInstall Terminalizer from NPM\n\n```sh\nnpm install -g terminalizer\n```\n\n### Setup Go on Neovim\n\nInstall binaries on running this command `GoInstallBinaries`\n\n## Uninstall nvim\n\n```sh\n# Linux / Macos (unix)\nrm -rf ~/.config/nvim\nrm -rf ~/.local/share/nvim\n\n# Windows\nrd -r ~\\AppData\\Local\\nvim\nrd -r ~\\AppData\\Local\\nvim-data\n```\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandostronaut%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandostronaut%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandostronaut%2Fdotfiles/lists"}