{"id":35118891,"url":"https://github.com/nvjkmr/.vim","last_synced_at":"2025-12-27T23:00:06.577Z","repository":{"id":69583006,"uuid":"146876928","full_name":"nvjkmr/.vim","owner":"nvjkmr","description":"My vim configuration files","archived":false,"fork":false,"pushed_at":"2025-03-17T08:39:24.000Z","size":116,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-17T09:37:35.020Z","etag":null,"topics":["config","neovim","nvim","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/nvjkmr.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-08-31T10:22:38.000Z","updated_at":"2025-03-17T08:39:27.000Z","dependencies_parsed_at":"2024-02-12T14:05:08.092Z","dependency_job_id":null,"html_url":"https://github.com/nvjkmr/.vim","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nvjkmr/.vim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nvjkmr%2F.vim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nvjkmr%2F.vim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nvjkmr%2F.vim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nvjkmr%2F.vim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nvjkmr","download_url":"https://codeload.github.com/nvjkmr/.vim/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nvjkmr%2F.vim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28087665,"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-12-27T02:00:05.897Z","response_time":58,"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":["config","neovim","nvim","vim","vimrc"],"created_at":"2025-12-27T23:00:05.533Z","updated_at":"2025-12-27T23:00:06.546Z","avatar_url":"https://github.com/nvjkmr.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Neovim Configuration\n\nA modern Neovim configuration based on LazyVim, optimized for Ruby on Rails development. This configuration uses the Lazy package manager for plugin management and provides a powerful, IDE-like experience.\n\n## Features\n\n- Built on LazyVim framework\n- Optimized for Ruby on Rails development\n- AI assistance with Avante (Copilot Agent Mode)\n- Efficient keybindings with which-key\n\n## Requirements\n\nBefore installation, ensure you have:\n\n1. [Neovim 0.8+](https://github.com/neovim/neovim/releases)\n2. [Git](https://git-scm.com/)\n3. [ripgrep](https://github.com/BurntSushi/ripgrep) - For fast file searching\n4. A Nerd Font (https://www.nerdfonts.com/)\n5. Ruby language server: `gem install ruby-lsp`\n6. For debugging: `gem install debug`\n\n## Installation\n\n```bash\n# Backup any existing configuration\nmv ~/.config/nvim ~/.config/nvim.bak\n\n# Clone this configuration\ngit clone https://github.com/nvjkmr/.vim.git ~/.config/nvim\n\n# Start Neovim - plugins will be automatically installed on first launch\n```\n\n## Ruby on Rails Features\n\nThis configuration includes special support for Ruby on Rails development:\n\n- Full Ruby language support via Treesitter\n- Ruby LSP integration for intelligent code completion and navigation\n- Rails-specific navigation with vim-rails\n- Integrated testing via vim-test\n- Debugging support with DAP\n- Custom AI prompts for Rails development tasks\n\n### Key Bindings for Rails Development\n\n| Action | Shortcut |\n|:-------|:---------|\n| Test nearest | `\u003cleader\u003etn` |\n| Test file | `\u003cleader\u003etf` |\n| Test suite | `\u003cleader\u003ets` |\n| Test last | `\u003cleader\u003etl` |\n| Visit test file | `\u003cleader\u003etv` |\n| Find Rails files | `\u003cleader\u003efr` |\n| Find Models | `\u003cleader\u003efm` |\n| Find Controllers | `\u003cleader\u003efc` |\n| Find Views | `\u003cleader\u003efv` |\n\n## AI Integration (Avante.nvim)\n\nToggle AI assistant with `\u003cleader\u003eaa`\n\n### Custom Rails prompts\n\n- Explain Rails Code\n- Generate Rails Model\n- Generate Rails Controller\n- Optimize Query\n- Generate Migration\n\n## LSP Features\n\n| Action | Shortcut |\n|:-------|:---------|\n| Go to definition | `gd` |\n| Go to declaration | `gD` |\n| Go to Implementation | `gi` |\n| Find References | `gr` |\n| Rename symbol | `\u003cleader\u003ern` |\n| Code actions | `\u003cleader\u003eca` |\n| Hover documentation | `K` |\n| Previous error | `[d` |\n| Next error | `]d` |\n| Debug | `\u003cleader\u003ed` |\n\n## Health Check\n\nRun `:checkhealth` to verify that all components are working correctly.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnvjkmr%2F.vim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnvjkmr%2F.vim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnvjkmr%2F.vim/lists"}