{"id":22360795,"url":"https://github.com/ghashtag/dotfiles-vps","last_synced_at":"2026-03-19T22:33:46.415Z","repository":{"id":112932778,"uuid":"135729674","full_name":"gHashTag/dotfiles-vps","owner":"gHashTag","description":null,"archived":false,"fork":false,"pushed_at":"2018-09-16T10:04:31.000Z","size":29,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-26T14:34:04.319Z","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/gHashTag.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-06-01T14:45:33.000Z","updated_at":"2023-02-06T17:24:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"2977e66e-fb8d-4e98-8af0-79a4ea83f4c4","html_url":"https://github.com/gHashTag/dotfiles-vps","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gHashTag/dotfiles-vps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gHashTag%2Fdotfiles-vps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gHashTag%2Fdotfiles-vps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gHashTag%2Fdotfiles-vps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gHashTag%2Fdotfiles-vps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gHashTag","download_url":"https://codeload.github.com/gHashTag/dotfiles-vps/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gHashTag%2Fdotfiles-vps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28220897,"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","status":"online","status_checked_at":"2026-01-06T02:00:07.049Z","response_time":56,"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":[],"created_at":"2024-12-04T16:18:37.687Z","updated_at":"2026-01-06T02:52:02.815Z","avatar_url":"https://github.com/gHashTag.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"Установка языка\n```dpkg-reconfigure locales```\n\nДобавляем пользователя\n```adduser playra```\n\nНаделяем правами суперадминистратора\n```adduser playra sudo```\n\nНа локальной машине\n```ssh-copy-id playra@ЗДЕСЬ ВСТАВЛЯЕМ IP VPS```\n\nКопируем этот поект\n```git clone https://github.com/gHashTag/dotfiles-vps.git dotfiles```\n\nЛинкуем файлы ~/\n```\nln -s ./dotfiles/.vimrc .vimrc\nln -s ./dotfiles/.nvimrc .nvimrc\nln -s ./dotfiles/.zshrc .zshrc\nln -s ./dotfiles/.gitignore .gitignore\nln -s ./dotfiles/.gitconfig .gitconfig\nln -s ./dotfiles/.gitignore_global .gitignore_global\nln -s ./dotfiles/.editorconfig .editorconfig\nln -s ./dotfiles/.ctags .ctags\nln -s ./dotfiles/.eslintrc .eslintrc\nln -s ./dotfiles/.flowconfig .flowconfig\nln -s ./dotfiles/libdefs.js libdefs.js\n```\nСтавим Oh My ZSH!\n```\nsudo apt-get install zsh\ncurl -L http://install.ohmyz.sh | sh\n```\n\nСтавим vim plug https://github.com/junegunn/vim-plug\n```\ncurl -fLo ~/.vim/autoload/plug.vim --create-dirs \\\n    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim\n```\nЗаходим в .vimrc и вызываем команду PlugInstall\n\nСтавим NeoVim\nhttps://github.com/neovim/neovim/wiki/Installing-Neovim#ubuntu\n\nСоздаем файл touch .config/nvim/init.vim\nс содержимым для neovim\n```javascript\nset runtimepath^=~/.vim runtimepath+=~/.vim/after\nlet \u0026packpath = \u0026runtimepath\nsource ~/.nvimrc\n```\n\nСтавим Docker\nhttps://docs.docker.com/install/linux/docker-ce/ubuntu/#install-using-the-repository\n\nСтавим Docker-compose\nhttps://docs.docker.com/compose/install/#install-compose\n\nУстанавливаем node-js\nПосле того, как все обновится, устанавливаем node-js (с чем и npm установится).\n```\ncurl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -\nsudo apt-get install -y nodejs\n```\n\nYarn - совместный фейсбука с гуглом менеджер пакетов типа npm. Он здесь тоже понадобится.\n```\ncurl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -\necho \"deb https://dl.yarnpkg.com/debian/ stable main\" | sudo tee /etc/apt/sources.list.d/yarn.list\nsudo apt-get update \u0026\u0026 sudo apt-get install yarn\n```\nУстанавливаем призму глобально.\n```sudo npm install -g prisma```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fghashtag%2Fdotfiles-vps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fghashtag%2Fdotfiles-vps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fghashtag%2Fdotfiles-vps/lists"}