Notes by Peter Galonza(Пётр Галонза)
GitHub Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

VIM

Enable syntax ~/.vimrc

syntax on

Enable line numbers ~/.vimrc

set number

Disable visual mode

:set mouse-=a

Jump to column and line

call cursor(15,25)

Disable search

:nohl

Show hiden characters

:set list
:set nolist

Hex mode

:%!xxd

Binary mode

vim -b file_name

Delete and paste

ddP

Pluginx

  • scrooloose/nerdtree
  • itchyny/lightline.vim

Commands