Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 755 Bytes

README.md

File metadata and controls

48 lines (31 loc) · 755 Bytes

Dot files 📜

Configuring Neovim

touch ~/.config/nvim/init.vim
# paste content of vim/init.vim

Install VimPlug

sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
       https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
nvim ~/.config/nvim/init.vim

Plugins

:PlugInstall to install plugins and :PlugClean to clean Plugins.

Clone or download vim files

Download files inside noevim files to:

cd ~/.config/nvim/

Run PlugInstall again.

Neovim Commands

Vim Commentary

gc + ➡️ ⬅️ ⬆️ ⬇️

Git usefull commands

Join staged files with the last commit

git add .
git commit --amend --no-edit