{"id":21815499,"url":"https://github.com/Web-Dev-Codi/neovim-dot-files","last_synced_at":"2025-07-20T09:31:31.105Z","repository":{"id":219718984,"uuid":"749729435","full_name":"Web-Dev-Codi/neovim-epic-config","owner":"Web-Dev-Codi","description":"A repository containing the ultimate Neovim setup","archived":false,"fork":false,"pushed_at":"2024-11-10T12:25:43.000Z","size":7469,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-10T12:37:19.425Z","etag":null,"topics":["configuration","ide","lazyvim","lua","neovim","nvchad","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":"apache-2.0","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":"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}},"created_at":"2024-01-29T09:28:16.000Z","updated_at":"2024-11-10T12:25:47.000Z","dependencies_parsed_at":"2024-11-10T12:36:53.079Z","dependency_job_id":null,"html_url":"https://github.com/Web-Dev-Codi/neovim-epic-config","commit_stats":null,"previous_names":["web-dev-codi/neovim-epic-config"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Web-Dev-Codi%2Fneovim-epic-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Web-Dev-Codi%2Fneovim-epic-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Web-Dev-Codi%2Fneovim-epic-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Web-Dev-Codi%2Fneovim-epic-config/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-epic-config/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226770420,"owners_count":17679203,"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","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","lua","neovim","nvchad","setup","template","vim"],"created_at":"2024-11-27T15:19:22.470Z","updated_at":"2025-07-20T09:31:31.100Z","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"}