Skip to content

Instantly share code, notes, and snippets.

View junior-ales's full-sized avatar

Junior Ales junior-ales

View GitHub Profile
@junior-ales
junior-ales / .gitconfig
Last active December 16, 2015 21:28
Personal GIT configuration file
[user]
name = Junior Ales
email = edilson.ales.jr@gmail.com
[color]
ui = auto
[branch "master"]
remote = origin
merge = refs/heads/master
[apply]
whitespace = fix
@junior-ales
junior-ales / .vimrc
Last active December 16, 2015 21:28
Personal VIM configuration file
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'vim-scripts/HTML5-Syntax-File'
Bundle 'vim-scripts/The-NERD-tree'
Bundle 'altercation/vim-colors-solarized'
@junior-ales
junior-ales / redis.sh
Last active December 12, 2015 05:08
Script to help the dealing with a local instance of Redis
#!/bin/bash
REDIS_PATH="##### Add here the Redis path #####"
REDIS_SERVER="${REDIS_PATH}/src/redis-server"
REDIS_CLI="${REDIS_PATH}/src/redis-cli"
PORT=6379
start() {
if [ "$1" = "--no-daemon" ]; then
${REDIS_SERVER} ${REDIS_PATH}/redis-no-daemon.conf