View vimrc
"" elulcao | |
"" vim ~/.vimrc | |
" | |
"" Plugins | |
set nocompatible " Be iMproved, required | |
filetype off " Required | |
set rtp+=~/.vim/bundle/Vundle.vim " Set the runtime path to include Vundle and initialize | |
call vundle#begin() " Let Vundle manage Vundle, required | |
Plugin 'VundleVim/Vundle.vim' |
View tmux.conf
# vim ~/.tmux.conf | |
# Initial setup | |
set -g default-terminal xterm-256color | |
set -s focus-events on | |
set -g history-limit 9000 | |
bind s choose-tree -s -O name | |
# remap prefix from 'C-b' to 'C-a' | |
unbind C-b | |
set-option -g prefix C-a |