{"id":22256857,"url":"https://github.com/mountolive/init.vim","last_synced_at":"2026-04-11T09:39:25.453Z","repository":{"id":113831245,"uuid":"346343531","full_name":"mountolive/init.vim","owner":"mountolive","description":"My init.vim configuration","archived":false,"fork":false,"pushed_at":"2025-07-01T14:48:34.000Z","size":156,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-08T20:07:18.267Z","etag":null,"topics":["go","lsp","lua","neovim","python","rust","vim"],"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/mountolive.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":"2021-03-10T12:09:39.000Z","updated_at":"2025-07-01T14:48:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"8face26c-6df3-4b20-8f80-f7b5477441ae","html_url":"https://github.com/mountolive/init.vim","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mountolive/init.vim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mountolive%2Finit.vim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mountolive%2Finit.vim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mountolive%2Finit.vim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mountolive%2Finit.vim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mountolive","download_url":"https://codeload.github.com/mountolive/init.vim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mountolive%2Finit.vim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000701,"owners_count":26082819,"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":"2025-10-08T02:00:06.501Z","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":["go","lsp","lua","neovim","python","rust","vim"],"created_at":"2024-12-03T08:08:50.764Z","updated_at":"2026-04-11T09:39:25.448Z","avatar_url":"https://github.com/mountolive.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Neovim Config\n\nI've used this config smoothly for Go, Ruby, Rust, Bash, Python and TypeScript.\n\n## Quick Setup\n\nRun the setup script to install all prerequisites on a fresh system (macOS or Ubuntu-like Linux):\n\n```bash\n./setup.sh\n```\n\nAfter the script completes, open Neovim and run:\n\n```vim\n:PlugInstall\n```\n\n## Prerequisites\n\n### Core\n\n| Dependency | Purpose |\n|---|---|\n| Neovim \u003e= 0.10 | Editor |\n| [vim-plug](https://github.com/junegunn/vim-plug) | Plugin manager |\n| git | Plugin installation, version control |\n| Node.js / npm | LSP servers, prettier |\n| Go | gopls, delve |\n| Python 3 / pip | pynvim, pyright |\n| Ruby / gem | ruby-lsp |\n| Rust / cargo | rust-analyzer, rusty-tags |\n\n### CLI Tools\n\n| Tool | Purpose | Install |\n|---|---|---|\n| [ag](https://github.com/ggreer/the_silver_searcher) (silver searcher) | Fuzzy search, ack.vim | `brew install the_silver_searcher` / `apt install silversearcher-ag` |\n| [fzf](https://github.com/junegunn/fzf) | Fuzzy file finder | Installed automatically by vim-plug |\n| [jq](https://github.com/jqlang/jq) | JSON formatting (`,Z`) | `brew install jq` / `apt install jq` |\n| [prettier](https://prettier.io/) | Markdown formatting on save | `npm install -g prettier` |\n| [universal-ctags](https://github.com/universal-ctags/ctags) | Tag generation | `brew install --HEAD universal-ctags/universal-ctags/universal-ctags` / build from source |\n\n### LSP Servers\n\n| Server | Language | Install |\n|---|---|---|\n| [gopls](https://pkg.go.dev/golang.org/x/tools/gopls) | Go | `go install golang.org/x/tools/gopls@latest` |\n| [delve](https://github.com/go-delve/delve) | Go (debugger) | `go install github.com/go-delve/delve/cmd/dlv@latest` |\n| [pyright](https://github.com/microsoft/pyright) | Python | `npm install -g pyright` |\n| [bash-language-server](https://github.com/bash-lsp/bash-language-server) | Bash | `npm install -g bash-language-server` |\n| [rust-analyzer](https://rust-analyzer.github.io/) | Rust | `rustup component add rust-analyzer` |\n| [ruby-lsp](https://github.com/Shopify/ruby-lsp) | Ruby | `gem install ruby-lsp` |\n| typescript-tools.nvim | TypeScript | Bundled as Neovim plugin |\n\n### Python\n\n```bash\npip install pynvim\n```\n\n### Ruby\n\n```bash\ngem install neovim ruby-lsp\n```\n\n### Rust Extras\n\nFor ctags support in Rust projects:\n\n```bash\ncargo install rusty-tags\nrustup component add rust-src\n```\n\nAdd to your shell profile (`~/.bashrc`, `~/.zshrc`, etc.):\n\n```bash\nexport RUST_SRC_PATH=$(rustc --print sysroot)/lib/rustlib/src/rust/library/\n```\n\nCreate `~/.rusty-tags/config.toml`:\n\n```toml\nvi_tags = \".rstags\"\nemacs_tags = \"rusty-tags.emacs\"\nctags_exe = \"\"\nctags_options = \"\"\n```\n\nRemember to add `*.*tags` to your `.gitignore`.\n\n### TreeSitter\n\nTreesitter parsers are installed automatically on startup for: bash, css, go, gomod,\ngosum, html, javascript, json, lua, markdown, python, ruby, rust, toml, typescript,\ntsx, vim, vimdoc, yaml.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmountolive%2Finit.vim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmountolive%2Finit.vim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmountolive%2Finit.vim/lists"}