{"id":21237786,"url":"https://github.com/marcosvidolin/dotfiles","last_synced_at":"2026-05-17T20:08:04.920Z","repository":{"id":46702241,"uuid":"241957754","full_name":"marcosvidolin/dotfiles","owner":"marcosvidolin","description":"customizations and configurations files","archived":false,"fork":false,"pushed_at":"2025-02-28T07:58:08.000Z","size":10716,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-15T03:17:44.322Z","etag":null,"topics":["editor","editorconfig","eslint-config","extensions","prettier-config","settings","vim","vim-configuration","vim-plugin","vimrc","vscode"],"latest_commit_sha":null,"homepage":"","language":"Vim Script","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/marcosvidolin.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":"2020-02-20T18:20:14.000Z","updated_at":"2025-02-28T07:58:11.000Z","dependencies_parsed_at":"2023-10-11T12:44:08.819Z","dependency_job_id":"6f258d98-0c0f-4aa6-8794-e0f924bc4d93","html_url":"https://github.com/marcosvidolin/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/marcosvidolin/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcosvidolin%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcosvidolin%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcosvidolin%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcosvidolin%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marcosvidolin","download_url":"https://codeload.github.com/marcosvidolin/dotfiles/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcosvidolin%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33153665,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["editor","editorconfig","eslint-config","extensions","prettier-config","settings","vim","vim-configuration","vim-plugin","vimrc","vscode"],"created_at":"2024-11-21T00:21:01.973Z","updated_at":"2026-05-17T20:08:04.900Z","avatar_url":"https://github.com/marcosvidolin.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# my-environment 🕶 🍎 🚀\n\nMy custom environment: plugins and tools\n\n## Terminal 💻\n\n### iTerm2\n\n```shell\nbrew install --cask iterm2\n```\n\nInstall Nerd Font\n\n```shell\nbrew tap homebrew/cask-fonts\nbrew cask install font-hack-nerd-font\n```\n\nAuto-Starting Tmux in iTerm2\n\n- Send text at start:\n\n```shell\n# tmux attach -t \u003csession name\u003e || tmux new -s \u003csession name\u003e\ntmux\n```\n\n### Brew\n\nexport brew\n\n```shell\nbrew bundle dump\n```\n\nimport\n\n```shell\nbrew bundle\n```\n\n### Essential terminal improvements\n\nMake your terminal more friendly:\n\n- Install\n\n```shell\nbrew install fortune cowsay\n```\n\n- Add the following line to the ~/.bash_profile or ~/.zshrc\n\n```shell\nfortune | cowsay\n```\n\nHave fun ✌🏼\n\n### Oh My Zsh\n\nPlugins: \n\n```sh\ngit clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting\n```\n\n```sh\ngit clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions\n```\n\n## VIM \n\n### Plug Manager\n\n```shell\ncurl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \\\n    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim\n```\n\n### Go Language Server\n\nTo enable Go language server in nvim-coc, you need to install the coc-go extension by running the following command in your terminal:\n\n```shell\n:CocInstall coc-go\n```\n\n### Check if everything is fine:\n\n```shell\n:checkhealth\n```\n\n## Go\n\n[Staticcheck](https://github.com/dominikh/go-tools)\n\n```shell\ngo install honnef.co/go/tools/cmd/staticcheck@latest\n```\n\n[Gow](https://github.com/mitranim/gow): Go Watch: missing watch mode for the go command. It's invoked exactly like go, but also watches Go files and reruns on changes.\n\n```shell\ngo install github.com/mitranim/gow@latest\n```\n\n[Gotestsum](https://github.com/gotestyourself/gotestsum)\n\n```shell\ngo install gotest.tools/gotestsum@latest\n```\n\n[Gotests](https://github.com/cweill/gotests): t's a Golang commandline tool that generates table driven tests based on its target source files' function and method signatures.\n\n```shell\n$ go get -u github.com/cweill/gotests/...\n```\n\n[Air](https://github.com/cosmtrek/air): Live reload for Go apps\n\n```shell\ngo install github.com/cosmtrek/air@latest\n```\n\n[Golines](https://github.com/segmentio/golines): Golines is a golang formatter that shortens long lines, in addition to all of the formatting fixes done by gofmt\n\n```shell\ngo install github.com/segmentio/golines@latest\n```\n\n[Wails](https://github.com/wailsapp/wails): Build desktop applications using Go \u0026 Web Technologies\n\n## Utilit Tools\n\n### Mac\n\n- [Hand Mirror](https://apps.apple.com/us/app/hand-mirror/id1502839586?mt=12): One-click camera check\n\n## VS Code\n\n### Extensions\n\n- [Joker Smile](https://marketplace.visualstudio.com/items?itemName=marcosvidolin.joker-smile): This is a Visual Studio Code theme based on Joker's style.\n\n## Chrome\n\n### Extensions\n\n- [Octotree](https://chrome.google.com/webstore/detail/octotree/bkhaagjahfmjljalopjnoealnfndnagc): Browser extension that brings your GitHub experience to the next level.\n- [Dark Reader](https://chrome.google.com/webstore/detail/dark-reader/eimadpbcbfnmbkopoojfekhnkhdbieeh): Dark mode for every website. Take care of your eyes, use dark theme for night and daily browsing.\n- [React Developer Tools](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en): React Developer Tools is a Chrome DevTools extension for the open-source React JavaScript library.\n- [JSONViewer](https://chrome.google.com/webstore/detail/jsonview/chklaanhfefbnpoihckbnefhakgolnmc?hl=en): \nValidate and view JSON documents.\n- [Grammarly](https://chrome.google.com/webstore/detail/grammarly-for-chrome/kbfnbcaeplbcioakkpcpgfkobkghlhen?hl=en): Grammarly helps you eliminate writing errors and find the perfect words to express yourself.\n- [OneTab](https://chrome.google.com/webstore/detail/onetab/chphlpgkkbolifaimnlloiipkdnihall/related?hl=en): Whenever you find yourself with too many tabs, click the OneTab icon to convert all of your tabs into a list. \n- [ColorZilla](https://chrome.google.com/webstore/detail/colorzilla/bhlhnicpbhignbdhedgjhgdocnmhomnp?hl=en): Advanced Eyedropper, Color Picker, Gradient Generator and other colorful goodies.\n- [AdBlock](https://chrome.google.com/webstore/detail/adblock-%E2%80%94-best-ad-blocker/gighmmpiobklfepjocnamgkkbiglidom): Block ads and pop-ups on YouTube, Facebook, Twitch, and your favorite websites.\n\n\n## Utility Sites\n\n[Regex101](https://regex101.com/): A very intuitive online regular expression tool\n\n[JWT.IO](https://jwt.io/): JWT.IO allows you to decode, verify and generate JWT\n\n[gitignore.io](https://www.gitignore.io/): Create useful .gitignore files for your project\n\n[patorjk.com](http://patorjk.com/software/taag/#p=display\u0026f=Graffiti\u0026t=Type%20Something%20): Text to ASCII Art Generator\n\n[vim-bootstrap](https://vim-bootstrap.com/): Your configuration generator for Neovim/Vim\n\n[JSON Crack](https://jsoncrack.com/): Seamlessly visualize your JSON data instantly into graphs\n\n[SwagDefGen](https://roger13.github.io/SwagDefGen/): Swagger Definition Objects Generator\n\n[Carbon](https://carbon.now.sh/): Create and share beautiful images of your source code\n\n[MongoDb Playground](https://mongoplayground.net/): Mongo Playground allows you to build mongodb queries\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcosvidolin%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarcosvidolin%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcosvidolin%2Fdotfiles/lists"}