gvizdyk / nvim

Neovim configuration files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Install instructions

cd $HOME

get source

git clone https://github.com/gvizdyk/nvim.git

or

git clone git@github.com:gvizdyk/nvim.git

apply configuration

ln -s ~/nvim ~/.config/nvim

fetch plugins

cd nvim
nvim +PlugInstall +qall

use plugins

vim-signature

vim-signature is a plugin to place, toggle and display marks.

  mx           Toggle mark 'x' and display it in the leftmost column
  dmx          Remove mark 'x' where x is a-zA-Z

  m,           Place the next available mark
  m.           If no mark on line, place the next available mark. Otherwise, remove (first) existing mark.
  m-           Delete all marks from the current line
  m<Space>     Delete all marks from the current buffer
  ]`           Jump to next mark
  [`           Jump to prev mark
  ]'           Jump to start of next line containing a mark
  ['           Jump to start of prev line containing a mark
  `]           Jump by alphabetical order to next mark
  `[           Jump by alphabetical order to prev mark
  ']           Jump by alphabetical order to start of next line having a mark
  '[           Jump by alphabetical order to start of prev line having a mark
  m/           Open location list and display marks from current buffer

  m[0-9]       Toggle the corresponding marker !@#$%^&*()
  m<S-[0-9]>   Remove all markers of the same type
  ]-           Jump to next line having a marker of the same type
  [-           Jump to prev line having a marker of the same type
  ]=           Jump to next line having a marker of any type
  [=           Jump to prev line having a marker of any type
  m?           Open location list and display markers from current buffer
  m<BS>        Remove all markers

About

Neovim configuration files


Languages

Language:Vim Script 100.0%