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
inoremap jk <Esc> | |
call pathogen#infect() | |
filetype plugin indent on | |
set nocompatible "This fixes the problem where arrow keys do not function properly on some systems. | |
set t_Co=256 "256 colors. | |
set background=dark | |
set cursorline "Highlight the cursor row. | |
set cursorcolumn "Highlight the cursor column. | |
set title "Make the window title awesome." | |
colors molokai |
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 ( | |
"context" | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
"os/signal" | |
"syscall" |
OlderNewer