{"id":29878558,"url":"https://github.com/e-gleba/nvim-config","last_synced_at":"2026-04-27T16:32:56.446Z","repository":{"id":273065127,"uuid":"918607233","full_name":"e-gleba/nvim-config","owner":"e-gleba","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-18T14:18:06.000Z","size":252,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-18T16:24:31.013Z","etag":null,"topics":["bash","cmake","config","cpp-oriented","lazyvim","linux-oriented","neovim","nvim-config","nvim-distribution","productivity","python"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/e-gleba.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"license","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":"2025-01-18T11:35:36.000Z","updated_at":"2026-04-18T14:18:10.000Z","dependencies_parsed_at":"2025-05-01T13:23:08.400Z","dependency_job_id":"bd2fe7e9-2777-4dc7-bf65-7b6eafeb4979","html_url":"https://github.com/e-gleba/nvim-config","commit_stats":null,"previous_names":["geugenm/nvim-config","e-gleba/nvim-config"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/e-gleba/nvim-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e-gleba%2Fnvim-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e-gleba%2Fnvim-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e-gleba%2Fnvim-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e-gleba%2Fnvim-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/e-gleba","download_url":"https://codeload.github.com/e-gleba/nvim-config/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e-gleba%2Fnvim-config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32345804,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"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":["bash","cmake","config","cpp-oriented","lazyvim","linux-oriented","neovim","nvim-config","nvim-distribution","productivity","python"],"created_at":"2025-07-31T07:33:11.747Z","updated_at":"2026-04-27T16:32:56.440Z","avatar_url":"https://github.com/e-gleba.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LazyVim Configuration for C++/Python Development\n\nA meticulously crafted Neovim configuration optimized for C++ and Python development. This setup provides a clean, efficient editing experience while maintaining excellent performance - designed specifically for developers who value minimal, high-quality tooling.\n\n## Installation Guide\n\n### Prerequisites\n\n- Neovim 0.9.x (stable version only, avoid pre-release versions)\n- Git\n- C compiler (required for Treesitter functionality)\n- For C++ development: LLDB or GDB\n- For Python development: Python 3.8+ with debugpy\n\n### Installing Neovim\n\n#### Linux (Fedora recommended)\n\n```bash\n# Fedora\nsudo dnf install neovim\n\n# Ubuntu/Debian\nsudo apt install neovim\n```\n\n#### macOS\n\n```bash\n# Using Homebrew (recommended)\nbrew install neovim\n\n# AVOID nightly builds which cause stability issues:\n# brew install --HEAD neovim  # NOT RECOMMENDED\n```\n\n#### Windows\n\n**Recommended approach**: Use Windows Subsystem for Linux (WSL2) with Ubuntu.\n\nFor native Windows:\n\n- Download the MSI installer from [Neovim Releases](https://github.com/neovim/neovim/releases)\n- Or use a package manager:\n\n  ```powershell\n  # Scoop\n  scoop install neovim\n  ```\n\n**Important**: On Windows, you'll need to install a C compiler for Treesitter support following the [nvim-treesitter documentation](https://github.com/nvim-treesitter/nvim-treesitter#windows-installation).\n\n### Setting Up This Configuration\n\n1. First, backup any existing Neovim configuration:\n\n```bash\n# Linux/macOS\nmkdir -p ~/.config/nvim.bak\nmv ~/.config/nvim ~/.config/nvim.bak/\nmv ~/.local/share/nvim ~/.local/share/nvim.bak\nmv ~/.local/state/nvim ~/.local/state/nvim.bak\nmv ~/.cache/nvim ~/.cache/nvim.bak\n\n# Windows (PowerShell)\nRename-Item -Path $env:LOCALAPPDATA\\nvim -NewName $env:LOCALAPPDATA\\nvim.bak -ErrorAction SilentlyContinue\nRename-Item -Path $env:LOCALAPPDATA\\nvim-data -NewName $env:LOCALAPPDATA\\nvim-data.bak -ErrorAction SilentlyContinue\n```\n\n2. Clone this repository:\n\n```bash\n# Linux/macOS\ngit clone https://github.com/geugenm/nvim-config.git ~/.config/nvim\n\n# Windows (PowerShell)\ngit clone https://github.com/geugenm/nvim-config.git $env:LOCALAPPDATA\\nvim\n```\n\n3. Launch Neovim to automatically install plugins:\n\n```bash\nnvim\n```\n\nThe configuration will automatically install [lazy.nvim](https://github.com/folke/lazy.nvim) plugin manager and all required plugins on first launch.\n\n## C++ Development Environment\n\n### Debugging Setup\n\n#### Windows-Specific Debugging Configuration\n\nTo avoid freezes when loading native debug symbols on Windows:\n\n1. Set the `LLDB_USE_NATIVE_PDB_READER` environment variable to prevent the extremely slow symbol loading issue:\n\n```powershell\n# For current session\n$env:LLDB_USE_NATIVE_PDB_READER=1\n\n# Set permanently (run as Administrator)\n[System.Environment]::SetEnvironmentVariable(\"LLDB_USE_NATIVE_PDB_READER\", \"1\", \"Machine\")\n```\n\n2. Ensure proper DIA SDK configuration:\n   - Locate `msdia140.dll` in your Visual Studio installation (typically at `[VisualStudioFolder]\\DIA SDK\\bin\\msdia140.dll`)\n   - Add this location to your PATH or copy the DLL to your LLDB installation directory\n\nThis addresses the common issue where Neovim freezes when loading debug symbols on Windows, significantly improving debugging performance.\n\n## Python Development Environment\n\nThe configuration includes:\n\n- Python language server integration\n- debugpy for debugging Python applications (with proper virtual environment activation)\n- Advanced code completion and refactoring tools\n\n## Key Features\n\n- Snake_case naming convention emphasis in code\n- Minimal, laconic code style with maximum library reuse\n- Fast startup and responsive editing experience\n- Optimized for both C++ and Python development workflows\n- Git integration with staging, diffing, and history visualization\n- Error handling that doesn't hide problems\n\n## Documentation and Resources\n\n- Built upon [LazyVim](https://lazyvim.github.io/) - see their [installation guide](https://lazyvim.github.io/installation)\n- Uses [lazy.nvim](https://github.com/folke/lazy.nvim) for plugin management - see their [documentation](https://lazy.folke.io/installation)\n- Documentation formatted in proper markdown following industry best practices\n\n## Troubleshooting\n\n### Known Issues\n\n- **nvim-dap debugpy issues on Windows**: Requires proper virtual environment activation before debugging. See [this issue](https://github.com/mfussenegger/nvim-dap-python/issues/118) for details.\n- **Neovim freezes on file reload**: This issue affects Neovim 0.10.x, use stable 0.9.x instead. See [LazyVim issue #1581](https://github.com/LazyVim/LazyVim/issues/1581).\n- **LLDB symbol loading performance**: Set `LLDB_USE_NATIVE_PDB_READER=1` as described above to dramatically improve performance.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fe-gleba%2Fnvim-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fe-gleba%2Fnvim-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fe-gleba%2Fnvim-config/lists"}