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
| " Visuals | |
| set number " show line numbers | |
| set ruler " cursor position | |
| set cursorline " highlight current line | |
| set colorcolumn=80 " 80 chars mark | |
| au BufRead,BufNewFile *.md setlocal textwidth=80 | |
| au BufRead,BufNewFile *.apib setlocal textwidth=80 | |
| " Pathogen configuration | |
| execute pathogen#infect() |
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 guifont=Source\ Code\ Pro:h18 |
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
| import os | |
| import requests | |
| API_KEY = os.environ["API_KEY"] | |
| TOKEN = os.environ["TOKEN"] | |
| WIKI_TODO_LIST_ID = os.environ["WIKI_TODO_LIST_ID"] | |
| class Trello: |