{"id":22300599,"url":"https://github.com/accursedgalaxy/nvim","last_synced_at":"2025-03-25T23:27:35.504Z","repository":{"id":217191965,"uuid":"743163967","full_name":"AccursedGalaxy/nvim","owner":"AccursedGalaxy","description":"My personal neovim config for development in python and note taking.","archived":false,"fork":false,"pushed_at":"2025-03-07T01:12:37.000Z","size":64,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-07T02:23:10.149Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AccursedGalaxy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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-14T14:27:52.000Z","updated_at":"2025-03-07T01:12:41.000Z","dependencies_parsed_at":"2024-01-22T00:33:48.473Z","dependency_job_id":"6b03e7a4-e04a-4128-b521-718dc61b727c","html_url":"https://github.com/AccursedGalaxy/nvim","commit_stats":null,"previous_names":["accursedgalaxy/nvim"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AccursedGalaxy%2Fnvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AccursedGalaxy%2Fnvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AccursedGalaxy%2Fnvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AccursedGalaxy%2Fnvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AccursedGalaxy","download_url":"https://codeload.github.com/AccursedGalaxy/nvim/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245558915,"owners_count":20635267,"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":[],"created_at":"2024-12-03T18:12:44.339Z","updated_at":"2025-03-25T23:27:30.494Z","avatar_url":"https://github.com/AccursedGalaxy.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NeoVim Configuration by AccursedGalaxy\n\n\nA modern, feature-rich Neovim configuration focused on productivity, with intelligent LSP integration, extensive plugin support, and carefully crafted keymaps.\nThis setup supports both regular Neovim and VSCode Neovim integration.\nIt is a work in progress and continuously evolving as I refine and optimize it.\n\n⚠️ **Note:** This setup is currently not fully tested or documented. If you choose to use or adapt it, I recommend forking the repository and customizing it to your own needs.\n\n\u003e **Planned Improvement:** I will add an installation script to automate the setup and simplify future updates.\n\n## Features\n\n### Core Functionality\n- **Dual Mode Support**: Separate configurations for standalone Neovim and VSCode-Neovim integration\n- **Lazy Loading**: Powered by lazy.nvim for optimal startup performance\n- **Intelligent LSP Integration**: Comprehensive language server support with automatic setup\n- **Advanced Search Capabilities**: Integrated Ripgrep and Telescope for powerful search functionality\n\n### Language Support\n- Built-in support for multiple languages including:\n  - Python (pyright)\n  - C/C++ (clangd)\n  - Go (gopls)\n  - Rust\n  - Lua\n  - HTML/CSS\n  - JSON/YAML\n  - Bash\n  - And more...\n\n### Key Features\n\n#### LSP and Code Intelligence\n- Full LSP integration with automatic server configuration\n- Intelligent code completion via nvim-cmp\n- GitHub Copilot integration for AI-assisted coding\n- Advanced diagnostics and error handling\n- Code actions and quick fixes\n\n#### Navigation and Search\n- Telescope integration for fuzzy finding\n- Harpoon for quick file navigation\n- Advanced ripgrep integration for project-wide search\n- Custom file navigation commands\n\n#### Git Integration\n- Fugitive for Git operations\n- GitGutter for inline git diff information\n- Git worktree support\n\n#### UI Enhancements\n- Multiple theme support including:\n  - Gruvbox\n  - Tokyo Night\n  - Solarized Osaka\n  - Nord\n  - Rose Pine\n  - And more...\n- Transparent background support\n- Custom status line with lualine\n- Todo comments highlighting\n- Noice for enhanced UI\n- Fidget for LSP progress display\n\n#### Productivity Tools\n- Terminal integration with toggleterm\n- Zen mode for focused coding\n- Advanced undo tree visualization\n- Custom commenting system\n- Markdown preview with Glow\n- VimWiki integration for note-taking\n\n## Installation\n\n### Prerequisites\n- Neovim \u003e= 0.10.2\n- Git\n- Node.js (for Copilot and certain LSP features)\n- Ripgrep (for search functionality)\n\n### Basic Setup\n```bash\ngit clone https://github.com/AccursedGalaxy/nvim-config ~/.config/nvim\n```\n\n### Post-Installation\n1. Open Neovim to trigger automatic plugin installation\n2. Run `:Mason` to install language servers\n3. Run `:Copilot setup` to configure GitHub Copilot\n\n## Key Mappings\n\n### General\n- Space as leader key\n- Quick file navigation with Telescope\n- Advanced split management\n- Custom motion commands for efficient navigation\n\n### Notable Mappings\n```lua\n-- Example keymaps from remap.lua\nvim.g.mapleader = \" \"\nvim.keymap.set(\"n\", \"\u003cleader\u003epv\", vim.cmd.Ex)\n-- ... more keymaps\n```\n\n### VSCode Integration\nSeparate keymaps for VSCode-Neovim integration:\n```lua\n-- Example VSCode keymaps from vsremap.lua\nvim.keymap.set('n', '\u003cSpace\u003e', '\u003cNop\u003e')\nvim.g.mapleader = \" \"\n-- ... more VSCode specific keymaps\n```\n\n## Plugin Configuration\n\n### LSP Setup\n- Automatic language server configuration\n- Intelligent completion\n- Diagnostic integration\n- Code actions and quick fixes\n\n### Search and Navigation\n- Telescope integration with custom commands\n- Ripgrep integration for advanced search\n- Harpoon for quick file switching\n\n## Customization\n\nThe configuration is modular and easy to customize:\n- Individual plugin configurations in `lua/robin/`\n- Separate VSCode and regular Neovim configurations\n- Lazy-loaded plugins for optimal performance\n\n## Contributing\n\nContributions are welcome! Please feel free to submit pull requests or create issues for bugs and feature requests.\n\n## License\n\nMIT License - See [LICENSE](LICENSE.md) for details.\n\n---\n\nFor detailed configuration options and more information, please check the individual configuration files in the repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faccursedgalaxy%2Fnvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faccursedgalaxy%2Fnvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faccursedgalaxy%2Fnvim/lists"}