Skip to content

Instantly share code, notes, and snippets.

View jakescript's full-sized avatar
💬
is typing....

jake jakescript

💬
is typing....
View GitHub Profile
@jakescript
jakescript / init.vim
Created February 1, 2022 17:47
init.vim
set nu
set relativenumber
set tabstop=2
set shiftwidth=2
set expandtab
set smarttab
set smartindent
set nohlsearch
set hidden
set noerrorbells
@jakescript
jakescript / .travis.yml
Created February 2, 2021 18:46
Travis CI Setup NodeJS - PSQL
language: node.js
node_js:
- 12.18.3
services:
- postgresql
before_script:
- psql -c 'create database acme_db;' -U postgres