A Neovim plugin that emulates Vim's "easy mode," locking you into a modeless editing experience.
- Permanent Insert Mode: The plugin forces Neovim to stay in insert mode, preventing accidental switches to normal mode.
- Familiar Keybindings: Provides intuitive keybindings for common actions, accessible directly from insert mode:
Ctrl-S
: SaveCtrl-Q
: QuitCtrl-X
: Cut (after visual selection)Ctrl-C
: Copy (after visual selection)Ctrl-V
: PasteCtrl-Z
: UndoCtrl-Y
: RedoCtrl-A
: Select All
Use your favorite plugin manager to install from https://github.com/codebam/easymode.nvim
.
{
'codebam/easymode.nvim',
-- No configuration needed, it's enabled by default
}
use 'codebam/easymode.nvim'
Plug 'codebam/easymode.nvim'