Simplification of Neovim Configuration #37
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "rewrite"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Halved Startup Time
Summary by CodeRabbit
New Features
Bug Fixes
Refactor
Chores
Style
Walkthrough
This update restructures the Neovim configuration by removing legacy installation scripts and modularizing the Lua configuration. It introduces new utility and plugin management modules, consolidates and expands plugin configurations, and streamlines setup and formatting logic. Several plugins and scripts are removed or replaced, and configuration is now more centralized and version-aware.
Changes
vim.highlight.on_yank()tovim.hl.on_yank().Sequence Diagram(s)
Poem
📜 Recent review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Free
📥 Commits
Reviewing files that changed from the base of the PR and between
1ec5d1c4b8and044ccf2f03.📒 Files selected for processing (41)
.github/workflows/release.yml(1 hunks)README.md(1 hunks)init.lua(1 hunks)installers/unix/gh.install(0 hunks)installers/unix/lazygit.install(0 hunks)installers/unix/neovim.install(0 hunks)installers/windows/lazygit.bat(0 hunks)installers/windows/neovim.bat(0 hunks)installers/windows/rg.bat(0 hunks)lua/config/autocmds.lua(1 hunks)lua/config/init.lua(1 hunks)lua/config/keymappings.lua(0 hunks)lua/config/lazy.lua(1 hunks)lua/config/options.lua(1 hunks)lua/configuration.lua(0 hunks)lua/init.lua(0 hunks)lua/plugins/ai.lua(0 hunks)lua/plugins/colorscheme.lua(1 hunks)lua/plugins/completions.lua(1 hunks)lua/plugins/dashboard.lua(1 hunks)lua/plugins/editor.lua(1 hunks)lua/plugins/explorer.lua(1 hunks)lua/plugins/formatting.lua(1 hunks)lua/plugins/git.lua(1 hunks)lua/plugins/init.lua(1 hunks)lua/plugins/keybindings.lua(0 hunks)lua/plugins/lsp.lua(0 hunks)lua/plugins/lspconfig.lua(1 hunks)lua/plugins/markdown.lua(0 hunks)lua/plugins/miscellaneous.lua(0 hunks)lua/plugins/telescope.lua(0 hunks)lua/plugins/terminal.lua(0 hunks)lua/plugins/theme.lua(0 hunks)lua/plugins/treesitter.lua(1 hunks)lua/plugins/ui.lua(1 hunks)lua/plugins/util.lua(1 hunks)lua/util/colorscheme.lua(1 hunks)lua/util/format.lua(1 hunks)lua/util/init.lua(1 hunks)lua/util/misc.lua(0 hunks)lua/util/plugins.lua(0 hunks)🪧 Tips
Chat
There are 3 ways to chat with CodeRabbit:
I pushed a fix in commit <commit_id>, please review it.Explain this complex logic.Open a follow-up GitHub issue for this discussion.@coderabbitaiin a new review comment at the desired location with your query. Examples:@coderabbitai explain this code block.@coderabbitai modularize this function.@coderabbitaiin a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:@coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.@coderabbitai read src/utils.ts and explain its main purpose.@coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.@coderabbitai help me debug CodeRabbit configuration file.Support
Need help? Join our Discord community for assistance with any issues or questions.
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.
CodeRabbit Commands (Invoked using PR comments)
@coderabbitai pauseto pause the reviews on a PR.@coderabbitai resumeto resume the paused reviews.@coderabbitai reviewto trigger an incremental review. This is useful when automatic reviews are disabled for the repository.@coderabbitai full reviewto do a full review from scratch and review all the files again.@coderabbitai summaryto regenerate the summary of the PR.@coderabbitai generate sequence diagramto generate a sequence diagram of the changes in this PR.@coderabbitai resolveresolve all the CodeRabbit review comments.@coderabbitai configurationto show the current CodeRabbit configuration for the repository.@coderabbitai helpto get help.Other keywords and placeholders
@coderabbitai ignoreanywhere in the PR description to prevent this PR from being reviewed.@coderabbitai summaryto generate the high-level summary at a specific location in the PR description.@coderabbitaianywhere in the PR title to generate the title automatically.CodeRabbit Configuration File (
.coderabbit.yaml).coderabbit.yamlfile to the root of your repository.# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.jsonDocumentation and Community
Pull Request Overview
This pull request simplifies the Neovim configuration while aiming to improve startup time. Key changes include the removal of several legacy utility and plugin files, consolidation of plugin initialization via lazy-loading, and refactoring of key configuration and options files.
Reviewed Changes
Copilot reviewed 41 out of 41 changed files in this pull request and generated 1 comment.
Show a summary per file
Comments suppressed due to low confidence (6)
lua/plugins/init.lua:2
lua/plugins/completions.lua:8
lua/plugins/explorer.lua:9
README.md:3
@ -33,3 +1,1 @@vim.opt.hlsearch = falsevim.opt.ignorecase = truevim.opt.termguicolors = truevim.g.mapleader = ' '[nitpick] The softtabstop setting is commented out while tabstop and shiftwidth are configured; consider setting softtabstop explicitly to maintain consistent indentation behavior.
Pull Request Overview
This PR primarily simplifies the Neovim configuration to improve startup performance by removing legacy modules and consolidating plugin configurations. Key changes include the removal of multiple utility and plugin spec files, the reorganization of lazy-loading configurations, and updates to key plugin setups and documentation.
Reviewed Changes
Copilot reviewed 41 out of 41 changed files in this pull request and generated no comments.
Show a summary per file
Comments suppressed due to low confidence (1)
lua/config/autocmds.lua:12