Neovim as Standard Editor — Building a Modern Workflow
Neovim as Standard Editor — Building a Modern Workflow
Section titled “Neovim as Standard Editor — Building a Modern Workflow”Today I built Neovim 0.12 on my Manjaro system from a minimal setup to a full developer workflow. No distribution like LazyVim or NvChad — everything configured manually, modular in Lua, with modern plugins.
The Starting Point
Section titled “The Starting Point”My init.lua had exactly three lines:
vim.o.grepprg = 'rg --vimgrep'vim.o.grepformat = '%f:%l:%c:%m'