====== Vim ======
===== Resolving **/usr/bin/env: ‘node\r’: No such file or directory** =====
* Open file in vim, and use command: **:set ff=unix**
* Save file
You should have unix line endings now
===== Vim plugins installer (vim-plug) and LightLine status bar replacement =====
curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
call plug#begin('~/.vim/plugged')
Plug 'itchyny/lightline.vim'
call plug#end()
so ~/.vim/plugins.vim
set laststatus=2
if !has('gui_running')
set t_Co=256
endif
set noshowmode
let g:lightline = { 'colorscheme': 'wombat'}
Launch Vim and run **:PlugInstall**
export TERM=xterm-256color