Getting started with Neovim

Installation Just follow the installation guide in here Neovim Installation. UI Terminologies Buffers: In-memory text of a file. The text of the file is loaded into memory for editing. The original file remains unchanged until you the write the buffer to the file. Windows: View of the buffer. You can use multiple windows to see a single buffer. Tabs: Collection of windows. Ruler

February 15, 2026 · 1 min · 63 words · Tuxy

Efficient coding with vim motions.

When you hear vim is the best text editor, it isn’t the performance or the customizability of the editor. Most of the time it’s about the vim motions. What are vim motions ? Vim motions are the commands used to navigate your cursor from one place of the file to another. It is kind of a language in itself using which you can describe the edits you want to make inside the current opened file. It isn’t bound only to the Vim editor but can be installed as an extension on your preferred code editor. ...

January 9, 2026 · 5 min · 926 words · Tuxy