Skip to content

Instantly share code, notes, and snippets.

View AceroM's full-sized avatar
🥭

Miguel Acero AceroM

🥭
View GitHub Profile
@AceroM
AceroM / .vimrc
Last active July 1, 2020 17:37
Vimrc for mac system
" settings General
set number
set mouse=a
set relativenumber
set hlsearch
set guicursor=
set smartcase
set noswapfile
set tabstop=2 softtabstop=2 expandtab shiftwidth=2 smarttab
set undodir=~/.vim/undodir
@AceroM
AceroM / tsconfig.json
Created July 21, 2019 00:40
personal typescript configuration
{
"compilerOptions": {
"noEmit": true,
"target": "esnext",
"module": "esnext",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"jsx": "preserve",
"importHelpers": true,
@AceroM
AceroM / skribbl_io_hints.js
Created June 3, 2020 19:58
skribbl.io hints
// run this inside your skribl game and you'll get a table on the bottom for hints
let words = ["bear","archaeologist","sunflower","hair","Vin Diesel","Daffy Duck","broomstick","unibrow","accident","saliva","Batman","radiation","boots","tornado","skyscraper","knife","witch","glass","Patrick","tank","type","shampoo","emerald","factory","apartment","Darwin","pig","underweight","grandmother","bar","short","iron","cloth","William Wallace","skydiving","chopsticks","cord","rug","spaceship","moss","ponytail","elbow","path","Barack Obama","centaur","wave","cello","Mark Zuckerberg","sailboat","JayZ","cheeks","Dora","Ferrari","meatloaf","burglar","dog","double","sneeze","Tweety","Donald Duck","Pumba","messy","melt","graduation","wart","moose","Zeus","school","kiss","dream","Shrek","snow","Steve Jobs","Hollywood","eclipse","record","sale","lottery","field","ring","pet shop","symphony","portal","ear","Elsa","basement","emoji","Elon Musk","Robbie Rotten","security","Flash","Grinch","spy","finger","Ikea","loot","seahorse",
@AceroM
AceroM / .vimrc
Last active June 17, 2020 04:46
vimrc for windows subsystem linux
set mouse=a
set relativenumber
set hlsearch
set guicursor= "what the cursor looks like
set number
set tabstop=2 softtabstop=2 expandtab shiftwidth=2 smarttab
set undodir=~/.vim/undodir
set noshowmatch
set nocompatible