Apidog

All-in-one Collaborative API Development Platform

API Design

API Documentation

API Debugging

API Mocking

API Automated Testing

NeoVim CheatSheet: 100 NeoVim Commands For Beginners

Mikael Svenson

Mikael Svenson

Updated on April 2, 2025

What is Neovim?

Neovim is a hyper-extensible, Vim-based text editor that aims to modernize and improve upon the classic Vim experience. Launched in 2014 as a fork of Vim, Neovim has since evolved into a standalone project with its own identity and development trajectory. While maintaining full compatibility with Vim's editing model, Neovim introduces a more maintainable codebase, better default settings, and a robust plugin architecture that leverages asynchronous execution.

At its core, Neovim preserves the modal editing philosophy that has made Vim legendary among developers and power users. This approach separates text editing into different modes - primarily normal mode for navigation and commands, insert mode for typing text, and visual mode for selecting and manipulating text blocks. This separation enables incredibly efficient text manipulation once mastered, allowing users to edit text at the speed of thought rather than the speed of keystrokes.

Neovim distinguishes itself from traditional text editors through its extensibility. It provides first-class support for language servers through the Language Server Protocol (LSP), built-in terminal emulation, and a Lua scripting interface that enables developers to create powerful plugins with minimal overhead. These features position Neovim as not just a text editor but a customizable development environment that can be tailored to individual workflows.


Before diving into our Neovim commands, I'd like to introduce you to Apidog – a comprehensive API development platform that's rapidly becoming the preferred Postman alternative for many developers.

If you frequently work with APIs while coding in Neovim, Apidog offers a seamless experience for API design, debugging, and documentation.

Apidog combines API documentation, automated testing, and mock servers in one integrated tool, making it perfect for both individual developers and teams. Its intuitive interface and powerful features streamline your API workflow while maintaining compatibility with your existing Postman collections. Take a moment to test Apidog alongside your Neovim setup – the combination of these powerful tools could revolutionize your development process.

button

Now, let's dive into those essential Neovim commands!

Why You Should Use Neovim

Performance and Efficiency

Neovim's architecture is designed for speed. By leveraging asynchronous I/O, it remains responsive even when running intensive tasks like code indexing or git operations. This means no more freezes or lag while working on large files or complex projects. The modal editing approach also minimizes hand movement, reducing the risk of repetitive strain injuries common among developers who spend hours coding.

Customizability and Extensibility

While many modern editors offer customization options, Neovim's approach is uniquely powerful. Every aspect of the editor can be configured to your preferences, from keybindings to appearance. The robust plugin ecosystem allows you to extend functionality in virtually any direction - transform Neovim into an IDE for your preferred language, a writing environment for documentation, or anything in between.

Future-Proof Skills

Learning Neovim develops editing skills that transcend specific tools or environments. Vim-style editing is available as a plugin or mode in nearly every popular editor and IDE, including VS Code, IntelliJ IDEA, and even browsers. Mastering these commands creates transferable skills that improve your productivity across multiple platforms.

Resource Efficiency

Neovim's minimal resource footprint makes it an excellent choice for remote work or lower-powered devices. It starts instantly and consumes significantly less memory than graphical editors, leaving more resources available for your actual development tasks.

Community and Ecosystem

Neovim has fostered an active community that continuously contributes to its improvement. The plugin ecosystem is rich and diverse, with tools available for virtually every development need. From fuzzy finding and file navigation to git integration and syntax highlighting, the community has created solutions that rival or exceed those found in commercial IDEs.

Open Source Ethos

By choosing Neovim, you're embracing a fully open source tool with a transparent development process. Your editor isn't subject to the whims of a corporation or sudden changes in licensing or pricing models.

How to Install Neovim on Windows, Mac, Linux

Windows Installation

Using Windows Package Manager (winget)

winget install Neovim.Neovim

Using Chocolatey

choco install neovim

Using Scoop

scoop install neovim

Manual Installation

  1. Visit the Neovim GitHub releases page
  2. Download the latest stable Windows ZIP archive
  3. Extract the contents to a location of your choice (e.g., C:\Program Files\Neovim)
  4. Add the bin directory to your PATH environment variable
  5. Verify installation by opening a command prompt and typing nvim --version

macOS Installation

Using Homebrew

brew install neovim

Using MacPorts

sudo port install neovim

Manual Installation

  1. Download the latest macOS archive from the Neovim GitHub releases page
  2. Extract the application to your Applications folder
  3. Optionally, add an alias to your shell configuration file:
alias nvim='/Applications/Neovim.app/Contents/MacOS/nvim'

Linux Installation

Ubuntu/Debian

sudo apt update
sudo apt install neovim

Fedora

sudo dnf install -y neovim python3-neovim

Arch Linux

sudo pacman -S neovim

Building from Source
For the latest features or on distributions without up-to-date packages:

git clone https://github.com/neovim/neovim
cd neovim
make CMAKE_BUILD_TYPE=RelWithDebInfo
sudo make install

Verifying Your Installation

After installation, open a terminal or command prompt and type:

nvim --version

You should see output displaying the Neovim version and build information. To start Neovim, simply type:

nvim

Initial Configuration

Neovim stores its configuration in the following locations:

  • Windows: %LOCALAPPDATA%\nvim\
  • macOS/Linux: ~/.config/nvim/

Create an init.vim file in this directory for Vimscript configuration or an init.lua for Lua configuration. Many users start with a minimal configuration and build up as they learn:

Basic init.vim example:

" Basic settings
set number          " Show line numbers
set relativenumber  " Show relative line numbers
set expandtab       " Use spaces instead of tabs
set tabstop=4       " Set tab width to 4 spaces
set shiftwidth=4    " Set shift width to 4 spaces
set autoindent      " Enable auto-indentation
set smartindent     " Enable smart indentation
set termguicolors   " Enable true colors support

Top 100 Neovim Commands for Beginners

Neovim has established itself as a powerful, extensible text editor for developers and power users alike. Building on Vim's foundation, Neovim offers improved performance, better plugin architecture, and a vibrant community constantly enhancing its capabilities. Whether you're a seasoned Vim veteran or a newcomer to modal editing, having a comprehensive command reference at your fingertips can dramatically improve your efficiency and workflow.

This cheatsheet compiles 100 essential Neovim commands that every user should know, organized by category for quick reference. From basic navigation to advanced text manipulation, these commands represent the toolkit that makes Neovim such a formidable editing environment. Mastering even a subset of these commands will significantly boost your productivity and help you harness Neovim's full potential.

Basic Navigation

  1. h, j, k, l - Move cursor left, down, up, right (the core movement keys in Neovim)
  2. w - Jump to start of next word (punctuation considered as words)
  3. W - Jump to start of next WORD (space-separated words)
  4. b - Jump to start of previous word
  5. B - Jump to start of previous WORD
  6. e - Jump to end of word
  7. E - Jump to end of WORD
  8. 0 - Jump to start of line (first column)
  9. ^ - Jump to first non-blank character of line
  10. $ - Jump to end of line
  11. gg - Go to first line of document
  12. G - Go to last line of document
  13. {number}G - Go to specific line number
  14. { - Jump to previous paragraph/code block
  15. } - Jump to next paragraph/code block
  16. Ctrl-u - Move up half a screen
  17. Ctrl-d - Move down half a screen
  18. Ctrl-b - Move up one full screen
  19. Ctrl-f - Move down one full screen
  20. zz - Center cursor on screen (current line becomes middle line)
  21. zt - Position cursor at top of screen
  22. zb - Position cursor at bottom of screen

Editing Commands

  1. i - Enter insert mode before cursor (for inserting text)
  2. I - Enter insert mode at beginning of line
  3. a - Enter insert mode after cursor (append)
  4. A - Enter insert mode at end of line
  5. o - Insert new line below current line and enter insert mode
  6. O - Insert new line above current line and enter insert mode
  7. r - Replace a single character under cursor (without entering insert mode)
  8. R - Enter replace mode (overwriting existing text)
  9. x - Delete character under cursor
  10. X - Delete character before cursor
  11. dd - Delete entire line (and store in register)
  12. {number}dd - Delete multiple lines
  13. D - Delete from cursor to end of line
  14. yy or Y - Yank (copy) entire line
  15. {number}yy - Yank multiple lines
  16. y$ - Yank from cursor to end of line
  17. p - Paste after cursor
  18. P - Paste before cursor
  19. u - Undo last change
  20. Ctrl-r - Redo (undo the undo)
  21. ~ - Switch case of character under cursor
  22. >> - Indent line
  23. << - Unindent line
  24. . - Repeat last command (powerful for repetitive edits)
  25. cc or C - Change entire line (delete line and enter insert mode)
  26. cw - Change word (delete word and enter insert mode)
  27. c$ or C - Change to end of line
  28. J - Join current line with the next line

Search and Replace

  1. /pattern - Search forward for pattern
  2. ?pattern - Search backward for pattern
  3. n - Repeat search in same direction
  4. N - Repeat search in opposite direction
  5. * - Search forward for word under cursor
  6. # - Search backward for word under cursor
  7. :%s/old/new/g - Replace all occurrences of 'old' with 'new' throughout file
  8. :%s/old/new/gc - Replace all occurrences with confirmations
  9. :s/old/new/g - Replace all occurrences on current line
  10. :noh - Clear search highlighting
  11. gd - Go to local definition of word under cursor
  12. gD - Go to global definition of word under cursor

Visual Mode

  1. v - Enter character-wise visual mode (select characters)
  2. V - Enter line-wise visual mode (select entire lines)
  3. Ctrl-v - Enter block-wise visual mode (select rectangular blocks)
  4. gv - Reselect previous visual selection
  5. o - In visual mode: Move to other end of selection
  6. O - In visual block mode: Move to other corner of block
  7. aw - Select a word (in visual mode)
  8. ab - Select a block with () (in visual mode)
  9. aB - Select a block with {} (in visual mode)
  10. at - Select a block with HTML/XML tags (in visual mode)

File Operations

  1. :e filename - Edit a file (create if doesn't exist)
  2. :w - Write (save) the file
  3. :w filename - Write to specified filename (save as)
  4. :q - Quit (fails if unsaved changes)
  5. :q! - Quit without saving (discard changes)
  6. :wq or :x - Write and quit
  7. :saveas filename - Save file as filename
  8. :r filename - Insert contents of file below cursor
  9. :r !command - Insert output of shell command below cursor

Working with Windows and Tabs

  1. :split or :sp - Split window horizontally
  2. :vsplit or :vs - Split window vertically
  3. Ctrl-w h/j/k/l - Navigate between windows (left/down/up/right)
  4. Ctrl-w +/- - Increase/decrease window height
  5. Ctrl-w </>- Increase/decrease window width
  6. Ctrl-w = - Make all windows equal size
  7. Ctrl-w o - Make current window the only one
  8. :tabnew - Create new tab
  9. gt - Go to next tab
  10. gT - Go to previous tab
  11. :tabclose - Close current tab
  12. :tabonly - Close all other tabs

Buffer Management

  1. :ls - List all buffers
  2. :b number - Switch to buffer by number
  3. :bn - Next buffer
  4. :bp - Previous buffer
  5. :bd - Delete buffer (close file)
  6. :bufdo command - Execute command on all buffers
  7. :e # - Edit the alternate file (usually the previously edited file)

Marks and Jumps

  1. m{a-z} - Set mark at current position (lowercase for file-local)
  2. m{A-Z} - Set mark at current position (uppercase for global)
  3. '{mark} - Jump to line of mark
  4. `{mark} - Jump to position of mark
  5. Ctrl-o - Jump to older position in jump list
  6. Ctrl-i - Jump to newer position in jump list
  7. '. - Jump to position of last change
  8. `. - Jump to exact position of last change

Text Objects and Motions

  1. ci( - Change inside parentheses
  2. di" - Delete inside double quotes
  3. yi] - Yank inside square brackets
  4. va{ - Visually select around curly braces (including the braces)
  5. dap - Delete around paragraph
  6. cit - Change inside HTML/XML tag
  7. diw - Delete inside word
  8. daw - Delete around word (including spaces)
  9. dab - Delete around block (parentheses)
  10. daB - Delete around block (curly braces)

Fold Commands

  1. zf - Create fold (in visual mode)
  2. zo - Open fold under cursor
  3. zc - Close fold under cursor
  4. za - Toggle fold under cursor
  5. zR - Open all folds
  6. zM - Close all folds
  7. zj - Move to next fold
  8. zk - Move to previous fold

Neovim-Specific Features

  1. :terminal or :term - Open integrated terminal
  2. Ctrl-\ Ctrl-n - Exit terminal mode to normal mode
  3. :checkhealth - Run Neovim's diagnostic tool
  4. :lua require('telescope.builtin').find_files() - Use Telescope plugin to find files
  5. :TSInstall language - Install treesitter parser for a language
  6. :LspInfo - Show Language Server Protocol status
  7. :TSBufToggle highlight - Toggle treesitter highlighting
  8. :highlight - Show current highlight groups
  9. :Tutor - Start Neovim's built-in tutorial
  10. :help nvim-features - View Neovim's specific features

Advanced Features

  1. q{a-z} - Record macro into register
  2. @{a-z} - Play macro from register
  3. @@ - Repeat last played macro
  4. g& - Repeat last substitution on all lines
  5. :norm cmd - Execute normal mode command on selected lines
  6. gf - Go to file under cursor
  7. Ctrl-a - Increment number under cursor
  8. Ctrl-x - Decrement number under cursor
  9. :sort - Sort selected lines
  10. !motion command - Filter text through external command

Conclusion

Neovim's power lies in its extensive command set, and mastering these commands will significantly enhance your editing efficiency. Remember that proficiency comes with practice – start by incorporating a few new commands into your workflow each day, and soon they'll become second nature.

The modal editing philosophy of Neovim allows for incredibly precise and efficient text manipulation once you build muscle memory for these commands. Consider creating your own custom key mappings for frequent operations to further boost your productivity.

As your proficiency grows, you might want to explore the plugin ecosystem to extend Neovim's functionality. Popular plugins like Telescope for fuzzy finding, LSP configurations for code intelligence, and Treesitter for improved syntax highlighting can transform Neovim into a powerful integrated development environment tailored to your specific needs.

For those working with APIs while using Neovim, don't forget to try Apidog as a comprehensive Postman alternative. Its streamlined interface and powerful features complement Neovim's efficiency-focused approach to create an optimal development environment.

Whether you're writing code, documenting projects, or editing configuration files, these Neovim commands provide the foundation for a text editing experience that grows with your needs and adapts to your personal workflow. With time and practice, you'll discover that the initial learning curve of Neovim pays extraordinary dividends in long-term productivity and editing joy.

Happy editing!


How to Set Up and Use Zapier MCP Server for AI AutomationViewpoint

How to Set Up and Use Zapier MCP Server for AI Automation

This guide walks you through setting up Zapier MCP, configuring actions, and integrating it with your AI client for seamless automation.

Emmanuel Mumba

April 3, 2025

20+ Awesome Cursor Rules You Can Setup for Your Cursor AI IDE NowViewpoint

20+ Awesome Cursor Rules You Can Setup for Your Cursor AI IDE Now

In this article, we will discuss what is cursorrules, how to use cursorrules, and the top 20 best cursor rules you can use.

Mikael Svenson

April 3, 2025

How to Setup & Use Jira MCP ServerViewpoint

How to Setup & Use Jira MCP Server

The AI landscape is rapidly evolving, and with it comes innovative ways to interact with our everyday productivity tools. Model Context Protocol (MCP), developed by Anthropic, stands at the forefront of this revolution. MCP creates a standardized bridge between AI models like Claude and external applications, allowing for seamless interaction and automation. One particularly powerful integration is with Atlassian's Jira, a tool used by countless teams worldwide for project and issue tracking. I

Ashley Goolam

April 3, 2025