{"id":21413357,"url":"https://github.com/cauandzn/dotfiles","last_synced_at":"2026-04-19T04:38:24.402Z","repository":{"id":236658590,"uuid":"622612048","full_name":"CauanDZN/dotfiles","owner":"CauanDZN","description":"Repository of configuration files to Linux Systems.","archived":false,"fork":false,"pushed_at":"2023-04-15T14:06:24.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-23T08:17:16.667Z","etag":null,"topics":["dotfiles","neovim","vim","vimrc"],"latest_commit_sha":null,"homepage":"","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/CauanDZN.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":"2023-04-02T16:12:53.000Z","updated_at":"2024-04-30T12:05:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"f6b46e26-d8a2-4e0f-b592-78a3d77444ac","html_url":"https://github.com/CauanDZN/dotfiles","commit_stats":null,"previous_names":["cauandzn/dotfiles"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CauanDZN/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CauanDZN%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CauanDZN%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CauanDZN%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CauanDZN%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CauanDZN","download_url":"https://codeload.github.com/CauanDZN/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CauanDZN%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31995167,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"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","neovim","vim","vimrc"],"created_at":"2024-11-22T18:18:06.818Z","updated_at":"2026-04-19T04:38:24.376Z","avatar_url":"https://github.com/CauanDZN.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Configuration Files to my Dev workflow with Node.js\n\nHello!\n\nWelcome to my repository of configuration files to Linux Systems!\n\nNowadays, I'm using Linux, at this time, Debian 11 in my main working machine.\n\n# Setup the tools\n\n### Installing git and curl\n```sh\nsudo apt update \u0026\u0026 sudo apt install git curl build-essential -y \n```\n\n### Installing Node Version Manager (nvm)\n```sh\n# Dowload and Install\ncurl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash\n\n# Include variables to PATH\necho -e 'export NVM_DIR=\"$([ -z \"${XDG_CONFIG_HOME-}\" ] \u0026\u0026 printf %s \"${HOME}/.nvm\" || printf %s \"${XDG_CONFIG_HOME}/nvm\")\"\n[ -s \"$NVM_DIR/nvm.sh\" ] \u0026\u0026 \\. \"$NVM_DIR/nvm.sh\" # This loads nvm' \u003e\u003e ~/.bashrc\n\n# Reload .bashrc with variables\nsource ~/.bashrc\n\n# Install the last LTS version of Node.js\nnvm install --lts\n\n#Alternativelly, install Yarn\nnpm install --global yarn\n```\n\n### So now, how you can configure Vim?\nWhichever is, Vim or Neovim, both are great tools, which do basic the same thing. \n\n\n### Installing and configuring Vim :)\n```sh\n# Install Vim with apt\nsudo apt update \u0026\u0026 sudo apt install vim -y\n\n# Installing vim-plug plugin manager\ncurl -fLo ~/.vim/autoload/plug.vim --create-dirs \\\n    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim\n\n# Backup your .vimrc file \ncp ~/.vimrc ~/.vimrcbkp\n\n# Download the configuration file    \ncurl https://raw.githubusercontent.com/cezarmzz/dotfiles/main/.vimrc \u003e ~/.vimrc\n```\n\n\n### Or Installing NeoVim\n```sh\n# Installing NeoVim \u0026 xclip to clipboard\nsudo apt update \u0026\u0026 sudo apt install neovim xclip -y \n\n# Installing vim-plug plugin manager\nsh -c 'curl -fLo \"${XDG_DATA_HOME:-$HOME/.local/share}\"/nvim/site/autoload/plug.vim --create-dirs \\\n       https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'\n       \n# Backup your nvim folder file \ncp -R ~/.config/nvim ~/.config/nvim_bkp\n\n# Download configuration files    \nsh -c 'curl -fLo ~/.config/nvim/init.vim --create-dirs \\\n\thttps://raw.githubusercontent.com/cezarmezzalira/dotfiles/main/.config/nvim/init.vim'\nsh -c 'curl -fLo ~/.config/nvim/coc-settings.json --create-dirs \\\n\thttps://raw.githubusercontent.com/cezarmezzalira/dotfiles/main/.config/nvim/coc-settings.json'\n```\n\nSo now, open vim with command ```vim``` and type ```:PlugInstall``` and wait all plugins end up the installation.\n\nClose vim and open again. If everything has installed, you now ready to start your development with Node.js and Vim :)\n\nPlease, if you enjoy, pick a star to this repo!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcauandzn%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcauandzn%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcauandzn%2Fdotfiles/lists"}