Skip to content

Instantly share code, notes, and snippets.

View dnegreira's full-sized avatar
🎯
Focusing

David Negreira dnegreira

🎯
Focusing
View GitHub Profile
@dnegreira
dnegreira / .vimrc
Created April 5, 2017 19:56
pimped vimrc
set nocompatible " be iMproved, required
filetype off " required
" Enable folding
set foldmethod=indent
set foldlevel=99
" Enable folding with the spacebar
nnoremap <space> za
" Python file definitions
au BufNewFile,BufRead *.py
\ set tabstop=4 |