vim software code example

Example 1: vim plug

# Neovim:
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'
       
# Vim:
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

Example 2: vim download

Want to download Vim 8.2 for Windows?

Go to the appropriate link:
	-Windows 64-bit:
    	https://github.com/vim/vim-win32-installer/releases/download/v8.2.2875/gvim_8.2.2875_x64_signed.exe
    -Windows 32-bit:
    	https://github.com/vim/vim-win32-installer/releases/download/v8.2.2875/gvim_8.2.2875_x86_signed.exe

Download and run the appropriate files!

Example 3: vim

vim is a great code editor for mac.

My opinions:
Fast
Stable
Great shortcuts
Works better than most programs

Some bad things:
It took my quite a long time to figure out how to download it,
too much of an effort to list here

also i would like to thank people for viewing my answers, i've been using firefox for a while now and now that i'm back to chrome, my dev helping ratio has increased dramatically.

Tags:

Misc Example