Skip to content

Instantly share code, notes, and snippets.

View mmlindeboom's full-sized avatar

Matt Lindeboom mmlindeboom

View GitHub Profile

Keybase proof

I hereby claim:

  • I am mmlindeboom on github.
  • I am boomish (https://keybase.io/boomish) on keybase.
  • I have a public key ASBDFyF36tQ-9znJNbpL-WH1jWGQ5rv_Pu11o7Q5lGa_Jwo

To claim this, I am signing this object:

@mmlindeboom
mmlindeboom / init.vim
Created July 30, 2017 21:10
nvim config
call plug#begin('~/.config/nvim/plugged')
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
Plug 'rking/ag.vim'
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'mhartington/oceanic-next'
call plug#end()
nnoremap <C-p> :FZF<CR>
nnoremap <C-n> :NERDTreeToggle<CR>
@mmlindeboom
mmlindeboom / .bashrc
Last active October 12, 2017 20:35
my bashrc
################################################################
######################### ALIASES ##############################
################################################################
## a quick way to get out of current directory ##
alias ..='cd ..'
alias ...='cd ../../../'
alias ....='cd ../../../../'
alias .....='cd ../../../../'
alias .4='cd ../../../../'
@mmlindeboom
mmlindeboom / .vimrc
Created June 22, 2017 23:01
My VIMRC
" Gotta be first
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
@mmlindeboom
mmlindeboom / carousel.js
Created April 9, 2013 19:07
Code for Feature carousel.
@mmlindeboom
mmlindeboom / _arrow-mixin.scss
Last active December 13, 2015 18:18
Compass mixin to create a css arrow. Accepts direction, size, and color arguments
@mixin arrow($direction, $size, $color){
@if unitless($size) {
@warn "Assuming #{$size} to be in pixels or ems";
}
@if $direction == up {
width:0px;
height:0px;
border-left:$size solid transparent;
border-right:$size solid transparent;
border-bottom:$size solid $color;