Make Vim Useful Again with VEX

Published: (December 25, 2025 at 08:00 AM EST)
3 min read
Source: Dev.to

Source: Dev.to

Hey everyone!

After months of tweaking, testing, and countless evenings spent in the terminal, I’m really excited to share the evolution of my Vim setup into something I’m now calling VEX — the Vim Ecosystem eXtension.


What is VEX?

What started as a personal .vimrc file slowly grew into a sprawling, hard‑to‑manage configuration. I wanted the power of a modern IDE—smart completion, easy navigation, seamless LSP support—without leaving the comfort and speed of Vim, and I wanted it to work instantly on any machine I sat down at.

VEX is a modern, modular, batteries‑included Vim configuration that’s just one git clone away from a full‑powered editing environment. It is not a new editor or a plugin; it’s a carefully curated, pre‑configured environment that layers on top of your existing Vim (version 8.0+). Think of it as a distribution for Vim, focused on developer experience and consistency.

Core Philosophy

  • Sensible defaults with zero friction.
  • No need to spend hours configuring LSP servers, fuzzy finders, or Git integration.
  • Works out of the box on Linux, macOS, and WSL.

“You shouldn’t spend hours configuring LSP servers, setting up fuzzy finders, or getting Git integration to work. VEX handles that, providing a cohesive experience across platforms.”

Installation

Step‑by‑step (Linux example)

  1. Read the installation guide:
    https://github.com/m-mdy-m/.vimrc/blob/main/docs/installation/linux.md

  2. One‑command install

    git clone https://github.com/m-mdy-m/.vimrc.git vex
    cd vex
    make install
  3. Launch Vim:

    vim

    The welcome screen greets you, and you’re ready to code.

Modular Options

FlagDescription
--minimalInstall only the essential core configuration.
--skip-lspSkip automatic installation of LSP servers.
--skip-pluginsInstall only the VEX configuration structure.

These flags can be combined as needed, e.g.:

make install --minimal --skip-lsp

Management Layer

VEX adds a thin management layer on top of Vim:

  • vex update – Pull the latest changes from the repo.
  • vex doctor – Diagnose common configuration issues.
  • vex plugin list – Show installed plugins.

All commands are documented here:
https://github.com/m-mdy-m/.vimrc/blob/main/docs/reference/commands.md

Modern IDE Features (still Vim)

FeaturePluginPurpose
Language intelligencevim-lspGo‑to‑definition, hover, diagnostics
Fuzzy searchingfzfFast file/line search
Inline Git diffsvim-gitgutterShow added/changed/removed lines
Status linevim-airlineClean, informative status bar
Text objectsvim-surroundEasy surrounding edits
Motionvim-easymotionJump to any location quickly

Key mappings are designed to feel intuitive (e.g., Ctrl+N toggles the file explorer) while preserving core Vim muscle memory.

All default key mappings are documented in one place:
https://github.com/m-mdy-m/.vimrc/blob/main/docs/configuration/keymaps.md

Plugins & Configuration

VEX does not reinvent Vim; it curates and integrates trusted plugins (managed by vim-plug) so they work together without conflicts. Key mappings don’t collide, features are discoverable, and defaults are predictable.

Documentation

All docs live in the docs/ directory and are organized as follows:

  • Configuration – keymaps, plugins, settings
  • Reference commandsvex CLI commands
  • Installation guides – platform‑specific notes

Repository tree:
https://github.com/m-mdy-m/.vimrc/tree/main/docs

Contributing & Feedback

VEX is stable, fast, and works for my daily workflow, but it’s far from “finished.” I’m looking for real‑world feedback to shape its future.

Discussion Prompts

  1. Does a batteries‑included Vim setup like this appeal to you, or do you prefer building everything piece by piece?
  2. Which parts of Vim configuration feel empowering, and which feel like friction or wasted time?
  3. If you tried VEX, what would you change first—keymaps, plugins, defaults, or the overall structure?

Your input will help ensure VEX evolves in a way that benefits the broader Vim community.

VEX isn’t trying to reinvent Vim; it simply packages the best of the ecosystem into a cohesive, ready‑to‑use experience.

Goal to be everything for everyone.  
It’s trying to be a solid, opinionated Vim environment that respects your time.  
If that resonates with you, let’s talk—what’s your take?
Back to Blog

Related posts

Read more »

Debian's Git Transition

Article URL: https://diziet.dreamwidth.org/20436.html Comments URL: https://news.ycombinator.com/item?id=46352231 Points: 10 Comments: 0...