{"id":32657454,"url":"https://github.com/chabrovs/nvim-py","last_synced_at":"2026-04-29T21:06:35.487Z","repository":{"id":318374151,"uuid":"1071016250","full_name":"chabrovs/nvim-py","owner":"chabrovs","description":"Fast, feature-rich setup for NeoVim 0.11.4+. Uses lazy.nvim and Mason for easy management. Includes optimized LSP, linting, and debugging for Python and its frameworks. Boost your coding speed!","archived":false,"fork":false,"pushed_at":"2025-10-15T21:01:34.000Z","size":43,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-31T12:02:16.294Z","etag":null,"topics":["config","configuration","debugging-tool","lua","lua-script","neovim","python3","vim"],"latest_commit_sha":null,"homepage":"https://chabrov.tech","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/chabrovs.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-10-06T18:45:09.000Z","updated_at":"2025-10-15T21:01:33.000Z","dependencies_parsed_at":"2025-10-06T21:11:20.447Z","dependency_job_id":"656fc348-dddb-4546-8db9-15e8d1f7bbc7","html_url":"https://github.com/chabrovs/nvim-py","commit_stats":null,"previous_names":["chabrovs/nvim-py"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/chabrovs/nvim-py","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chabrovs%2Fnvim-py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chabrovs%2Fnvim-py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chabrovs%2Fnvim-py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chabrovs%2Fnvim-py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chabrovs","download_url":"https://codeload.github.com/chabrovs/nvim-py/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chabrovs%2Fnvim-py/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32443618,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T20:22:27.477Z","status":"ssl_error","status_checked_at":"2026-04-29T20:22:26.507Z","response_time":110,"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":["config","configuration","debugging-tool","lua","lua-script","neovim","python3","vim"],"created_at":"2025-10-31T12:01:27.483Z","updated_at":"2026-04-29T21:06:35.482Z","avatar_url":"https://github.com/chabrovs.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `nvim-py`: NeoVim For Python🐍\nFast, feature-rich setup for NeoVim 0.11.4+. Uses lazy.nvim and Mason for easy management. Includes optimized LSP, linting, and debugging for Python and its frameworks. Boost your coding speed!\n- 🐍 Python-focused tools\n\n- 🚀 Lazy loading\n\n- 🛠️ Mason for LSPs/tools\n\n- ⚡ Fast performance\n\n- 🔧 Python Debugger\n\n## 💾 Installation (step-by-step):\n\n### (Optional*) Install Prerequisites:\n_NOTE: *(If all prerequisites are already installed this step can be skipped.)_\n\n1. Install Nvim binary:\n    - Download Nvim binary from the Nvim official repository: https://github.com/neovim/neovim/releases\n    - Install the binary:\n        - In Linux:  \n           __Execute these commands sequentially:__   \n \n           ```\n           mv ~/Downloads/\u003cyour_nvim\u003e /usr/local/bin/nvim\n           sudo chmod x+o /usr/local/bin/nvim\n           ```\n2. Install npm:  \n_NOTE: NPM is required for Node.js_  \n```sudo apt install npm```\n\n4. Install nodejs:  \n_NOTE: NodeJS is required for LSP servers._  \n__Execute these commands sequentially:__  \n    ```\n    sudo apt install nodejs\n    npm install -g n\n    sudo n lts\n    ```\n\n6. Install required system packages:  \n   ```\n   sudo apt install ripgrep\n   ```\n\n### (Required) Install the Nvim Config Itself:  \n1. BackUp your current NVim config:  \n```mv ~/.config/nvim{,.bak}```.\n\n2. Clone this repo:  \n```git clone git@github.com:chabrovs/nvim-py.git ~/.config/nvim```.\n\n3. Run Nvim:  \n```nvim .```   \n_NOTE: The lazy.vim package manager will take care of plugins, and Mason will take care of LSP servers aumatically._\n\n### Python Debugger installation:\n\nThere two options on how to setup a Python debugger in this configuration.\n\n0️⃣ Execute `pip install debugpy` in your project's virtual environment.  \n1️⃣ Or, Install Python debugger globally for NVim:\n  1. Go to the nvim directory: `cd ~/.config/nvim`;\n  2. Create a new directory called `.virtualenvs` and cd in it `cd ~/.config/nvim/.virtualenvs`;\n  3. Create a new virtual environment called `debugpy` in the `.virualenvs` directory: `python3 -m venv debugpy` and activate it: `. .virtualenvs/debugpy/bin/activate`\n  4. Execute `pip install debugpy`\n  5. It's done! Now Python debugger is available globally for your NVim configuration.\n\n## ⌨️ ShortCuts:\n### 📁 File finder \u0026 Fuzzy finder:\n|KeyMap|Descripton|Remender|\n|-|-|-|\n|__`\u003cleader\u003epf`__|Open Fuzzy Finder|Project Find|\n|__`\u003cleader\u003eps`__|Open Fuzzy Grep String|Project Search|\n|__`\u003cleader\u003epg`__|Open Fuzzy Live Grep|Progect Grep|\n|__`\u003cleader\u003e\u003cC-p\u003e`__|Open Fuzzy Finder for Git project||\n|__`\u003cleader\u003e\u003cpv\u003e`__|Open File Explorer|Project View|\n\n### 📑 Tabs:\n|KeyMap|Description\n|-|-|\n|__`\u003cleader\u003et`__|New tab|\n|__`\u003cleader\u003ett`__|Open Terminal|\n|__`\u003cleader\u003eright arrow`__|Switch Tab|\n|__`\u003cleader\u003eleft arrow`__|Switch Tab|\n\n### 🔎 Diagnostics:\n|KeyMap|Descripton|\n|-|-|\n|__`\u003cleader\u003edo`__|Open Diagnostics|\n|__`\u003cleader\u003edl`__|List Diagnostics|\n|__`\u003cleader\u003edp`__|Go to Previous Message|\n|__`\u003cleader\u003edn`__|Go to New Message|\n\n### 🖊️ LSP \u0026 Formatters\n|KeyMap|Descripton|\n|-|-|\n|__`\u003cleader\u003em`__|Hover|\n|__`\u003cleader\u003edf`__|Do to Definiiton|\n|__`\u003cleader\u003ei`__|Implemnetation|\n|__`\u003cleader\u003efx`__|Show fix suggestiosn|\n|__`\u003cleader\u003erf`__|Show References|\n|__`\u003cleader\u003emv`__|Remane|\n|__`\u003cleader\u003ef`__|Format|\n\n### 🐍 Python Debugger:\n|KeyMap|Descripton|\n|-|-|\n|__`\u003cleader\u003eDb`__|Set break point|\n|__`\u003cleader\u003eDs`__|Debugger Start|\n|__`\u003cleader\u003eDo`__|Debugger Open|\n|__`\u003cleader\u003eDc`__|Debugger Close|\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchabrovs%2Fnvim-py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchabrovs%2Fnvim-py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchabrovs%2Fnvim-py/lists"}