Skip to content

Instantly share code, notes, and snippets.

View baldore's full-sized avatar

Camilo Orrego baldore

View GitHub Profile
@baldore
baldore / init.vim
Last active April 11, 2020 13:09
My .vimrc file (Neovim)
call plug#begin('~/.config/nvim/plugged')
let nvimDir = '$HOME/.config/nvim'
let cacheDir = expand(nvimDir . '/.cache')
" Basic Functions {{{
function! CreateAndExpand(path)
if !isdirectory(expand(a:path))
call mkdir(expand(a:path), 'p')
@baldore
baldore / rwd.css
Created October 18, 2013 15:52 — forked from trey/rwd.css
/* http://twitter.github.com/bootstrap/scaffolding.html#responsive */
/* Landscape phones and down */
@media (max-width: 480px) { ... }
/* Landscape phone to portrait tablet */
@media (max-width: 768px) { ... }
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 940px) { ... }