{"id":16504541,"url":"https://github.com/devstein/vim","last_synced_at":"2026-03-18T20:03:30.827Z","repository":{"id":98519942,"uuid":"145188046","full_name":"devstein/vim","owner":"devstein","description":null,"archived":false,"fork":false,"pushed_at":"2023-10-22T00:51:33.000Z","size":20,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-02T01:13:51.414Z","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/devstein.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}},"created_at":"2018-08-18T03:52:27.000Z","updated_at":"2022-12-14T22:52:27.000Z","dependencies_parsed_at":"2023-10-03T06:49:29.624Z","dependency_job_id":null,"html_url":"https://github.com/devstein/vim","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devstein/vim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devstein%2Fvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devstein%2Fvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devstein%2Fvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devstein%2Fvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devstein","download_url":"https://codeload.github.com/devstein/vim/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devstein%2Fvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30171869,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T07:56:45.623Z","status":"ssl_error","status_checked_at":"2026-03-06T07:55:55.621Z","response_time":250,"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":[],"created_at":"2024-10-11T15:03:48.654Z","updated_at":"2026-03-06T10:31:24.662Z","avatar_url":"https://github.com/devstein.png","language":"Vim Script","readme":"# VIM\n\n\n## Setup\n\n### 1. Install [`neovim`](https://github.com/neovim/neovim)\n\n```bash\nbrew install neovim\npip install pynvim\nnpm install -g neovim\n```\n\n### 2. Alias `vim` and `vi` to `nvim`\n\n```bash\n# Add these lines to your ~/.bashrc or ~/.zshrc\nalias vi=\"nvim\"\nalias vim=\"nvim\"\n```\n\n### 3. Symlink `~/.vim/init.vim` to `~/.vimrc`\n\n```bash\nln -s ~/.vimrc ~/.vim/init.vim\n```\n\n### 4. Start modifying your `~/.vimrc`\n\nA few of my preferred settings \n```vim\n\" Remap leader key\nlet mapleader = \"\\\u003cSpace\u003e\"\n\n\" jj and jk to escape\ninoremap jj \u003cesc\u003e\ninoremap jk \u003cesc\u003e\n\n\" Ctrl+C to yank to clipboard\nvnoremap \u003cC-c\u003e \"*y\n\n\" Always use spaces\nset tabstop=2 shiftwidth=2 expandtab\n\n\" Color Scheme\nsyntax on\n\nset termguicolors\n\" Always use line numbers\nset number\n\n\" Spellcheck\nset spell spelllang=en_us\n```\n\n### 5. Install Plugins via [vim-plug](https://github.com/junegunn/vim-plug) \n\nFirst install `vim-plug`\n```bash\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\nThen to start off, add the following to the top of your `~/.vimrc`\n\n\n```vim\ncall plug#begin('~/.local/share/nvim/plugged')\n\nPlug 'tpope/vim-sensible'\nPlug 'tpope/vim-fugitive'\nPlug 'tpope/vim-surround'\nPlug 'tpope/vim-eunuch'\nPlug 'scrooloose/syntastic'\nPlug 'jiangmiao/auto-pairs'\nPlug 'vim-airline/vim-airline'\nPlug 'sheerun/vim-polyglot'\nPlug 'tpope/vim-repeat'\n\n\" File Finder\n\" PlugInstall and PlugUpdate will clone fzf in ~/.fzf and run the install script\nPlug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } | Plug 'junegunn/fzf.vim'\n\nPlug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }\nPlug 'Xuyuanp/nerdtree-git-plugin', { 'on': 'NERDTreeToggle' }\n\n\"\" Initialize plugin system\ncall plug#end()\n```\n\nand run `:PlugInstall`\n\n\n### 6. Explore [Vim Awesome](https://vimawesome.com/) to find plugins\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevstein%2Fvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevstein%2Fvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevstein%2Fvim/lists"}