Neovim for Blog Writing: Plugins, Keymaps, and a Cheatsheet

My Neovim config has always been coding-focused—LSP, treesitter, language-specific keymaps for Zig, Rust, and Go. But I recently wanted to use the same setup for writing blog posts. Here’s what I added to make Neovim a solid prose environment. The full config is at github.com/prasincs/vim-config. Writing-Focused Plugins Zen Mode zen-mode.nvim removes distractions by centering your buffer and hiding UI elements. { "folke/zen-mode.nvim", opts = {}, keys = { { "<leader>z", "<cmd>ZenMode<cr>", desc = "Zen Mode" }, }, }, Press <Space>z to toggle. The buffer centers itself, line numbers fade, and you’re left with just your text. ...

December 26, 2025 · 5 min · NextDoorHacker