Skip to content

Instantly share code, notes, and snippets.

View wellyal's full-sized avatar
:electron:
Focusing

Wellyngton Amaral Leitão wellyal

:electron:
Focusing
View GitHub Profile
@wellyal
wellyal / init.vim
Created June 22, 2019 02:06 — forked from celso/init.vim
Neovim setup for OSX users
syntax on
set ruler " Show the line and column numbers of the cursor.
set formatoptions+=o " Continue comment marker in new lines.
set textwidth=0 " Hard-wrap long lines as you type them.
set modeline " Enable modeline.
set esckeys " Cursor keys in insert mode.
set linespace=0 " Set line-spacing to minimum.
set nojoinspaces " Prevents inserting two spaces after punctuation on a join (J)
" More natural splits
set splitbelow " Horizontal split below current.
@wellyal
wellyal / setting-up-babel-nodemon.md
Created September 21, 2018 15:45 — forked from sam-artuso/setting-up-babel-nodemon.md
Setting up Babel and nodemon

Setting up Babel and nodemon

Inital set-up

Set up project:

mkdir project
cd project
npm init -y