I hereby claim:
- I am guilhermelimak on github.
- I am guilhermelimak (https://keybase.io/guilhermelimak) on keybase.
- I have a public key ASDrWWWz2fMbJlmMOnhZMRFqKiyeDxy0nqW52p38WlzEDAo
To claim this, I am signing this object:
| e asm.cmtright = true | |
| e asm.pseudo = true | |
| e cmd.stack = true | |
| e scr.utf8 = true | |
| eco solarized |
I hereby claim:
To claim this, I am signing this object:
| function install_nvm { | |
| curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash | |
| } | |
| function copy_dotfiles { | |
| git clone https://github.com/guilhermelimak/dotfiles.git ~/dotfiles | |
| ln -s ~/dotfiles/.vimrc ~/.vimrc | |
| ln -s ~/dotfiles/.tmux.conf ~/.tmux.conf | |
| } |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <!-- Generated by: TmTheme-Editor --> | |
| <!-- ============================================ --> | |
| <!-- app: http://tmtheme-editor.herokuapp.com --> | |
| <!-- code: https://github.com/aziz/tmTheme-Editor --> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>comment</key> | |
| <string>Dark theme, rainbow contrasts with emphasis on user defined code portions.</string> |
| clear | |
| sensitivity "0.3" # 800 dpi | |
| // === ALIASES === | |
| alias molotov "use weapon_knife;use weapon_incgrenade;use weapon_molotov" | |
| alias he "use weapon_knife;use weapon_hegrenade" | |
| alias flash "use weapon_knife;use weapon_flashbang" | |
| alias smoke "use weapon_knife;use weapon_smokegrenade" | |
| alias decoy "use weapon_knife;use weapon_decoy" |
| let mapleader = "<Space>" | |
| set noautofocus | |
| set smoothscroll | |
| set sortlinkhints | |
| map J previousTab | |
| map K nextTab | |
| map J goBack |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <!-- Generated by: TmTheme-Editor --> | |
| <!-- ============================================ --> | |
| <!-- app: http://tmtheme-editor.herokuapp.com --> | |
| <!-- code: https://github.com/aziz/tmTheme-Editor --> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>author</key> | |
| <string>Jan T. Sott</string> |
| unirest = require 'unirest' | |
| URLS = [ | |
| 'URLS_TO_CHECK_LIST' | |
| ] | |
| ACCESS_TOKEN = '[PUSHBULLET_API_KEY]' | |
| isError = (statusCode) -> | |
| if statusCode >= 200 and statusCode <= 399 then return true else return false |
| filetype plugin indent on " required | |
| nnoremap <SPACE> <Nop> | |
| let mapleader=" " | |
| " ============== | |
| " == Installed plugins | |
| " ============== | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| Plugin 'gmarik/Vundle.vim' |