{"id":23006665,"url":"https://github.com/aaronvb/nvim","last_synced_at":"2026-02-08T12:10:06.770Z","repository":{"id":138759562,"uuid":"294863201","full_name":"aaronvb/nvim","owner":"aaronvb","description":"nvim config","archived":false,"fork":false,"pushed_at":"2021-08-18T21:02:43.000Z","size":133,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-01T23:42:08.615Z","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/aaronvb.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":"2020-09-12T03:36:35.000Z","updated_at":"2021-08-18T21:02:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"b4384075-ab16-4106-81da-29c946e49286","html_url":"https://github.com/aaronvb/nvim","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aaronvb/nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronvb%2Fnvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronvb%2Fnvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronvb%2Fnvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronvb%2Fnvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aaronvb","download_url":"https://codeload.github.com/aaronvb/nvim/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronvb%2Fnvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29229547,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T12:03:03.049Z","status":"ssl_error","status_checked_at":"2026-02-08T12:02:56.077Z","response_time":57,"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-12-15T08:13:14.757Z","updated_at":"2026-02-08T12:10:06.754Z","avatar_url":"https://github.com/aaronvb.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg width=\"1072\" alt=\"Screen Shot 2020-09-13 at 8 57 28 AM\" src=\"https://user-images.githubusercontent.com/100900/93026102-379f1880-f59f-11ea-961f-be9564a15be0.png\"\u003e\n\n## Setup\nBase config taken from https://github.com/amix/vimrc\n\nInstall neovim:\n```\n\u003e brew install neovim\n```\n\nInstall pynvim support:\n```\n\u003e python3 -m pip install --user --upgrade pynvim\n```\n\nClone repo into `~/.config`\n```\n\u003e cd ~/.config\n\u003e git clone git@github.com:aaronvb/nvim.git\n```\n\nInstall plugings:\n```\n\u003e curl -fLo ~/.vim/autoload/plug.vim --create-dirs \\\n    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim\n```\n\n`:PlugInstall` to install all plugins.\n`:CocInstall coc-snippets` to install snippet support with coc.nvim\n\n## Cheat sheet\nNote: leader is `,`\n\n`,w` fast save\n\n`:W` sudo save\n\n`,return` clear highlight\n\n`# or *` searches current selection\n\n`ctrl hjkl` move between windows\n\n`,bd` close buffer\n\n`,be` or `,o` opens buffer explorer\n\n`,ba` close all buffers\n\n`,l` next buffer\n\n`,h` previous buffer\n\n`,tn` tab  new\n\n`,to` tab only\n\n`,tc` tab close\n\n`,tm` tab move\n\n`,t,` tab next\n\n`,tl` last tab\n\n`,te` tab edit\n\n`,cd` switch cwd to directory of open buffer\n\n`,ss` toggle spell check\n\n`,pp` toggle paste mode\n\n`,g` ack\n\n`,r` (visual) search and replace\n\n`,cc` brings up ack cope\n\n`,n` next search result\n\n`,p` previous search result\n\n`,j` or `ctrl p` ctrlP file\n\n`,b` ctrlP buffer\n\n`,f` ctrlP recently opened\n\n`,nn` toggle nerd tree\n\n`,nb` nerd tree from bookmark\n\n`,nf` nerd tree reveal file\n\n`ctrl s` multi select word\n\n`,d` toggle git gutter\n\n`shift k` coc toggle lookup documentation\n\n`ctrl space` coc trigger completion\n\n`[g ]g` coc to navigate coc diagnostics\n\n`gd` coc jump to definition\n\n`gy` coc jump to type definition\n\n`gi` coc jump to implementation\n\n`gr` coc jump to references\n\n`,rn` coc symbol rename\n\n`,f` coc format selected\n\n`,qf` coc auto fix current line\n\n`,ac` coc code action\n\n`:Format` coc format file (happens automatically on save)\n\n`:Fold` coc fold file\n\n`:OR` coc auto add imports (happens automatically on save)\n\n`space a` coc open diagnostics\n\n`space e` coc open extensions\n\n`space c` coc open commands\n\n`space o` coc open outline\n\n`space s` coc open symbols\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faaronvb%2Fnvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faaronvb%2Fnvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faaronvb%2Fnvim/lists"}