Skip to content

Instantly share code, notes, and snippets.

View josejaguirre's full-sized avatar
🤺
Programming

José Aguirre josejaguirre

🤺
Programming
View GitHub Profile
@josejaguirre
josejaguirre / vimrc
Created May 25, 2017 15:45
Configuración customizable de vim
set t_Co=256
filetype plugin indent on
syntax enable
set splitbelow
set splitright
set showcmd
set showmatch
# Yay! High voltage and arrows!
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[yellow]%}⚡%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_CLEAN=""
# 🍔 %{$fg[magenta]%}░▒▓▚▐%{$reset_color%}
PROMPT='$(virtualenv_prompt_info)%{$fg[green]%}⬢%{$reset_color%} %{$fg[cyan]%}%1~%{$reset_color%}%{$fg[red]%}|%{$reset_color%}$(git_prompt_info)%{$fg[cyan]%}⇒%{$reset_color%} '
export VIRTUAL_ENV_DISABLE_PROMPT=1
ZSH_THEME_VIRTUAL_ENV_PROMPT_PREFIX="💩"
ZSH_THEME_VIRTUAL_ENV_PROMPT_SUFFIX="💩"
function virtualenv_prompt_info() {
if [ -n "$VIRTUAL_ENV" ]; then
if [ -f "$VIRTUAL_ENV/__name__" ]; then
local name=`cat $VIRTUAL_ENV/__name__`
elif [ `basename $VIRTUAL_ENV` = "__" ]; then
// Cadena original
NSString *cadena = @"El DevF rockea";
// Cadena invertida
NSMutableString *reverse = [[NSMutableString alloc] init];
int time = 0;
for (int i = (int)([cadena length] - 1); i >= 0; i--) {
NSRange subString = NSMakeRange(i, 1);