Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 606 Bytes

readme.md

File metadata and controls

22 lines (16 loc) · 606 Bytes

Personal config for nvim

Keybinds

Notes on useful keybinds - combinations (because my memory is very short) Very useful article - https://www.barbarianmeetscoding.com/boost-your-coding-fu-with-vscode-and-vim/editing-like-magic-with-vim-operators/.

Navigation

  • gf - go to file
  • ff - fuzzy search
  • fr - recent files
  • gd - go to definition
  • <C-O> - go back
  • <C-I> - go forwards

Editing

  • ciw - Change inner word (edit word)
  • caw - Change around worda
  • ci{ - Change bracket content (works with all brackets)
  • f{char} - Next char (; for next, , for back)