{"id":23569093,"url":"https://github.com/web-dev-codi/neovim-dot-files","last_synced_at":"2026-04-20T10:32:24.689Z","repository":{"id":219718984,"uuid":"749729435","full_name":"Web-Dev-Codi/neovim-dot-files","owner":"Web-Dev-Codi","description":"A modern Neovim configuration focused on providing a powerful and user-friendly development environment","archived":false,"fork":false,"pushed_at":"2025-08-15T06:22:04.000Z","size":12150,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-15T08:23:04.241Z","etag":null,"topics":["configuration","ide","lazyvim","lazyvim-setup","lua","neovim","setup","template","vim"],"latest_commit_sha":null,"homepage":"","language":"Lua","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/Web-Dev-Codi.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":"2024-01-29T09:28:16.000Z","updated_at":"2025-08-15T06:22:10.000Z","dependencies_parsed_at":"2025-01-07T09:27:24.161Z","dependency_job_id":"0f0fda22-a459-4ca8-9919-c50880b01191","html_url":"https://github.com/Web-Dev-Codi/neovim-dot-files","commit_stats":{"total_commits":100,"total_committers":1,"mean_commits":100.0,"dds":0.0,"last_synced_commit":"bf9dcfae7d0ad71688ece1fe827b11f8073161b6"},"previous_names":["web-dev-codi/neovim-epic-config","web-dev-codi/neovim-dot-files"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Web-Dev-Codi/neovim-dot-files","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Web-Dev-Codi%2Fneovim-dot-files","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Web-Dev-Codi%2Fneovim-dot-files/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Web-Dev-Codi%2Fneovim-dot-files/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Web-Dev-Codi%2Fneovim-dot-files/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Web-Dev-Codi","download_url":"https://codeload.github.com/Web-Dev-Codi/neovim-dot-files/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Web-Dev-Codi%2Fneovim-dot-files/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32043018,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"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":["configuration","ide","lazyvim","lazyvim-setup","lua","neovim","setup","template","vim"],"created_at":"2024-12-26T19:12:28.084Z","updated_at":"2026-04-20T10:32:24.673Z","avatar_url":"https://github.com/Web-Dev-Codi.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 My Neovim Configuration\n\nA modern Neovim configuration focused on providing a powerful and user-friendly development environment.\n\n## ⚡️ Requirements\n\nBefore installing this configuration, ensure you have the following dependencies installed:\n\n### Neovim\n\n- **Linux**:\n\n  ```bash\n  # Ubuntu/Debian\n  sudo apt install neovim\n\n  # Arch Linux\n  sudo pacman -S neovim\n\n  # Fedora\n  sudo dnf install neovim\n  ```\n\n- **macOS**:\n\n  ```bash\n  brew install neovim\n  ```\n\n- **Windows**:\n  ```powershell\n  winget install Neovim.Neovim\n  # or\n  scoop install neovim\n  ```\n\nFor the latest version, you can build from source:\n\n```bash\ngit clone https://github.com/neovim/neovim\ncd neovim\nmake CMAKE_BUILD_TYPE=Release\nsudo make install\n```\n\n### System Clipboard Support\n\n- **Linux**:\n\n  ```bash\n  # Ubuntu/Debian\n  sudo apt install xclip\n\n  # Arch Linux\n  sudo pacman -S xclip\n\n  # Fedora\n  sudo dnf install xclip\n  ```\n\n### Required Dependencies\n\n1. **Ripgrep** (for telescope.nvim fuzzy finding):\n\n   ```bash\n   # Ubuntu/Debian\n   sudo apt install ripgrep\n\n   # Arch Linux\n   sudo pacman -S ripgrep\n\n   # macOS\n   brew install ripgrep\n\n   # Windows\n   winget install BurntSushi.ripgrep\n   ```\n\n2. **Python support** (for various plugins):\n\n   ```bash\n   pip install pynvim\n   ```\n\n3. **Nerd Fonts** (for icons and glyphs):\n\n   - Download your preferred font from [Nerd Fonts](https://www.nerdfonts.com/)\n   - **Linux**: Copy the font files to `~/.local/share/fonts/` and run `fc-cache -fv`\n   - **macOS**: Double-click the font file to install\n   - **Windows**: Right-click the font file and select \"Install\"\n\n   Recommended fonts:\n\n   - JetBrainsMono Nerd Font\n   - Hack Nerd Font\n   - FiraCode Nerd Font\n\n4. **Treesitter Compilers**:\n\n   ```bash\n   # Ubuntu/Debian\n   sudo apt install build-essential gcc g++\n\n   # Arch Linux\n   sudo pacman -S base-devel gcc\n\n   # macOS\n   xcode-select --install\n\n   # Windows\n   winget install GnuWin32.Make\n   winget install mingw\n   ```\n\n## 🚀 Installation\n\n1. Back up your existing Neovim configuration:\n\n   ```bash\n   mv ~/.config/nvim ~/.config/nvim.bak\n   mv ~/.local/share/nvim ~/.local/share/nvim.bak\n   ```\n\n2. Clone this repository:\n\n   ```bash\n   git clone https://github.com/Web-Dev-Codi/neovim-dot-files.git ~/.config/nvim\n   ```\n\n3. Launch Neovim:\n   ```bash\n   nvim\n   ```\n   The configuration will automatically install the package manager and plugins on first launch.\n\n## ⚙️ Post-Installation\n\n1. Verify health status:\n\n   ```vim\n   :checkhealth\n   ```\n\n2. Install treesitter parsers:\n   ```vim\n   :TSInstall all\n   ```\n\n## 🎨 Configuration Structure\n\n```\n~/.config/nvim/\n├── init.lua\n├── lua/\n|   ├── colorschemes/\n|   ├── config/\n|   ├── lualine/\n│   ├── plugins/\n└── snippets/\n├── spell/\n└── README.md\n```\n\n## 🔑 Key Mappings\n\n[Keymaps coming soon]\n\n## 📦 Included Plugins\n\n[Plugins list coming soon]\n\n## 🤝 Contributing\n\nFeel free to submit issues and enhancement requests!\n\n## 📝 License\n\nThis project is licensed under the Apache License - see the [LICENSE](LICENSE) file for details.\n\n\u003c!-- CONTACT --\u003e\n\n## Contact\n\nWeb-Dev-Codi - [Portfolio](https://webdevcodi.com) - www.webdevcodi.com\n\nProject Link: [https://github.com/Web-Dev-Codi/neovim-dot-files](https://github.com/Web-Dev-Codi/neovim-dot-files)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweb-dev-codi%2Fneovim-dot-files","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fweb-dev-codi%2Fneovim-dot-files","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweb-dev-codi%2Fneovim-dot-files/lists"}