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
| # easy_install twitter | |
| from twitter import * | |
| token = ACCESS_TOKEN | |
| token_key = ACCESS_TOKEN_SECRET | |
| con_secret_key = CONSUMER_SECRET | |
| con_secret = CONSUMER_KEY | |
| t = Twitter(auth=OAuth(token, token_key, con_secret, con_secret_key)) |
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
| # Path to your oh-my-zsh installation. | |
| export ZSH=$HOME/.oh-my-zsh | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| #ZSH_THEME="robbyrussell" | |
| ZSH_THEME="pygmalion" #war schon echt gut |
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
| " Based on Doug Black's blogpost: http://dougblack.io/words/a-good-vimrc.html | |
| " Mentioned color scheme: https://github.com/sjl/badwolf/ | |
| colorscheme badwolf " awesome colorscheme | |
| syntax enable " enable syntax processing | |
| set tabstop=4 " number of visual spaces per TAB | |
| set softtabstop=4 " number of spaces in tab when editing | |
| set expandtab " tabs are spaces | |
| set number " show line numbers | |
| set showcmd " show command in bottom bar |
NewerOlder