Agent skill
vim
Vim text editor with motions, macros, and plugins. Use for terminal editing.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/vim
SKILL.md
Vim
Vim is the universal text editor installed on every UNIX system. While Neovim innovates, Vim focuses on backward compatibility and stability.
When to Use
- SSH / Servers: It is always there.
viusually aliases tovim. - Stability: Scripts written in 2005 still work.
- Resource Constraints: Runs on embedded routers.
Core Concepts
Modes
- Normal: Navigation (
hjkl). - Insert: Typing (
i,a). - Visual: Selection (
v). - Command: Ex commands (
:w,:q).
Composability
Operator + Motion = Action.
d (delete) + w (word) = dw.
c (change) + i (inside) + " (quote) = ci".
Best Practices (2025)
Do:
- Learn the Basics:
vimtutoris mandatory for every developer. - Use
.vimrc: Keep a minimal config for servers (line numbers, syntax on). - Use Neovim for IDE: For daily coding, Neovim is preferred. Use Vim for quick edits.
Don't:
- Don't use arrow keys: Force yourself to use
hjkl.
References
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?