{"id":16062227,"url":"https://github.com/boris/neovim","last_synced_at":"2026-03-18T17:50:16.063Z","repository":{"id":43464732,"uuid":"269095104","full_name":"boris/neovim","owner":"boris","description":"Vim files","archived":false,"fork":false,"pushed_at":"2025-06-18T18:38:39.000Z","size":264,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-18T19:43:55.127Z","etag":null,"topics":[],"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/boris.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}},"created_at":"2020-06-03T13:26:24.000Z","updated_at":"2025-06-18T18:38:43.000Z","dependencies_parsed_at":"2022-08-23T18:21:22.612Z","dependency_job_id":"0958363f-830d-43f1-be84-e1a1edb1f7a7","html_url":"https://github.com/boris/neovim","commit_stats":null,"previous_names":["boris/vim"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/boris/neovim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boris%2Fneovim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boris%2Fneovim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boris%2Fneovim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boris%2Fneovim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/boris","download_url":"https://codeload.github.com/boris/neovim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boris%2Fneovim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28574405,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T16:29:19.148Z","status":"ssl_error","status_checked_at":"2026-01-19T16:29:17.772Z","response_time":67,"last_error":"SSL_read: 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-09T04:22:28.461Z","updated_at":"2026-01-19T16:33:14.706Z","avatar_url":"https://github.com/boris.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 😪 LazyVim Configuration\n\nThis is a modular and clean Neovim configuration built on top of [LazyVim](https://www.lazyvim.org/). It follows a structured approach with separated files for options, keymaps, plugins, and LSP setup — making it easy to extend and maintain.\n\n## 📁 Directory Structure\n\n```\n~/.config/nvim/\n├── init.lua                  -- Entry point: loads modular configs\n├── lua/\n│   └── config/\n│       ├── lazy.lua          -- Bootstraps lazy.nvim and loads plugins from /plugins\n│       ├── options.lua       -- Vim options (line numbers, tabs, colors, etc.)\n│       ├── keymaps.lua       -- Global keybindings\n│       ├── autocmds.lua      -- Custom autocommands\n│       └── lsp.lua           -- LSP server setup\n│\n│   └── plugins/\n│       ├── lsp.lua           -- LSP and completion plugins\n│       ├── treesitter.lua    -- Treesitter config\n│       ├── ui.lua            -- Colorscheme, UI components (NERDTree, Airline, Dashboard)\n│       ├── tools.lua         -- Telescope, autopairs, git\n│       └── ai.lua            -- Copilot and AI tools (Parrot, CopilotChat)\n```\n\n---\n\n## 🚀 Getting Started\n\n1. **Clone this config:**\n\n   ```bash\n   git clone https://github.com/YOUR_USERNAME/nvim-config ~/.config/nvim\n   ```\n\n2. **Launch Neovim:**\n\n   ```bash\n   nvim\n   ```\n\n3. **Lazy.nvim will install itself and all configured plugins on first run.**\n\n4. **(Optional) Clean lock file:**\n\n   ```bash\n   rm ~/.config/nvim/lazy-lock.json\n   nvim +Lazy sync\n   ```\n\n---\n\n## ➕ Adding a New Plugin\n\nTo add a new plugin, simply create a file inside `lua/plugins/`, or append to an existing one.\n\n### ✅ Example: Adding `vim-surround`\n\nCreate or edit `lua/plugins/tools.lua`:\n\n```lua\n-- ~/.config/nvim/lua/plugins/tools.lua\nreturn {\n  {\n    \"tpope/vim-surround\",\n    event = \"VeryLazy\", -- Optional lazy-load\n  },\n}\n```\n\nSave and run:\n\n```vim\n:Lazy sync\n```\n\n---\n\n## 🌜 Colorscheme\n\nThis config uses the [`charleston`](https://github.com/romanaverin/charleston.nvim) colorscheme and `vim-airline` with the `deus` theme.\n\nTo change the theme, edit `plugins/ui.lua` and update:\n\n```lua\nvim.cmd(\"colorscheme YOUR_THEME\")\n```\n\n---\n\n## 💬 AI Support\n\nIncludes both:\n\n- `CopilotChat.nvim`: Chat-based Copilot UX\n- `parrot.nvim`: Gemini/OpenAI assistant\n\nJust export the following in your shell:\n\n```bash\nexport OPENAI_API_KEY=your_openai_key\nexport GEMINI_API_KEY=your_gemini_key\n```\n\n---\n\n## 🛠 LSP Servers\n\nInstalled LSP servers include:\n\n- Docker (`dockerls`)\n- JSONNet (`jsonnet_ls`)\n- Python (`pyre`)\n- YAML (`yamlls`)\n\nYou can extend them in `config/lsp.lua`.\n\n---\n\n## 🧠 Keymaps\n\n| Mapping       | Mode     | Action                                |\n|---------------|----------|----------------------------------------|\n| `\u003cC-n\u003e`       | Normal   | Toggle Neo-tree file explorer          |\n| `\u003cC-p\u003e`       | Normal   | Telescope: find files                  |\n| `\u003cleader\u003efg`  | Normal   | Telescope: live grep                   |\n| `\u003cC-i\u003e`       | Normal   | Toggle invisible characters (`:set list!`) |\n| `\u003cC-j\u003e`       | Insert   | Accept GitHub Copilot suggestion       |\n| `\u003cleader\u003eaa`  | Normal/Visual | Toggle Copilot Chat window       |\n| `\u003cC-b\u003e`       | Normal/Visual | Toggle Copilot Chat window       |\n| `u` (in Neo-tree) | Normal | Go up one directory level             |\n| `zh` (in Neo-tree) | Normal | Toggle hidden files                  |\n| `zz` (in Neo-tree) | Normal | Toggle file tree view               |\n\n---\n\n## 📦 Powered by\n\n- [Lazy.nvim](https://github.com/folke/lazy.nvim)\n- [nvim-lspconfig](https://github.com/neovim/nvim-lspconfig)\n- [nvim-cmp](https://github.com/hrsh7th/nvim-cmp)\n- [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboris%2Fneovim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fboris%2Fneovim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboris%2Fneovim/lists"}