This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" .vimrc | |
" 2009-2013 Thomas Karmann | |
" Lots of cool stuff robbed from http://ruderich.org/simon/config/vimrc | |
" set the runtime path to include Vundle and initialize | |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" tango-style vim color scheme | |
" 02/2014 by sithkarm <[email protected]> | |
" based on tango colorscheme <[email protected]> | |
" place into .vim/colors/krmnn | |
set background=dark | |
hi clear | |
if exists("syntax_on") | |
syntax reset |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"errors" | |
"fmt" | |
"net" | |
"os" | |
"sort" | |
"time" | |
) |
OlderNewer