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 ( | |
| "fmt" | |
| "io" | |
| "log" | |
| "net/http" | |
| "os" | |
| "strconv" |
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
| set t_Co=256 | |
| syntax on | |
| set background=dark | |
| set nocompatible " Enable all the 'improved' features of Vim | |
| filetype off " Also require for Vundle. | |
| " Prevents potential side-effects | |
| " from system ftdetects scripts | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() |