Created
April 1, 2016 03:23
-
-
Save fabianuribe/637922125599806f4d9ee2991e65458f to your computer and use it in GitHub Desktop.
Development environment
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
execute pathogen#infect() | |
" don't bother with vi compatibility | |
set nocompatible | |
" enable syntax highlighting | |
syntax enable | |
" configure Vundle | |
filetype on " without this vim emits a zero exit status, later, because of :ft off | |
filetype off | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
" install Vundle bundles | |
" if filereadable(expand("~/.vimrc.bundles")) | |
" source ~/.vimrc.bundles | |
" source ~/.vimrc.bundles.local | |
" endif | |
" ensure ftdetect et al work by including this after the Vundle stuff | |
filetype plugin indent on | |
set autoindent | |
set autoread " reload files when changed on disk, i.e. via `git checkout` | |
set backspace=2 " Fix broken backspace in some setups | |
set backupcopy=yes " see :help crontab | |
set clipboard=unnamed " yank and paste with the system clipboard | |
set directory-=. " don't store swapfiles in the current directory | |
set encoding=utf-8 | |
set expandtab " expand tabs to spaces | |
set ignorecase " case-insensitive search | |
set incsearch " search as you type | |
set laststatus=2 " always show statusline | |
set list " show trailing whitespace | |
set listchars=tab:▸\ ,trail:▫ | |
set number " show line numbers | |
set ruler " show where you are | |
set scrolloff=3 " show context above/below cursorline | |
set shiftwidth=4 " normal mode indentation commands use 2 spaces | |
set showcmd | |
set smartcase " case-sensitive search if any caps | |
set softtabstop=4 " insert mode tab and backspace use 4 spaces | |
set tabstop=4 " actual tabs occupy 8 characters | |
set wildignore=log/**,node_modules/**,target/**,tmp/**,*.rbc | |
set wildmenu " show a navigable menu for tab completion | |
set wildmode=longest,list,full | |
set hlsearch " Highlight search | |
" Enable basic mouse behavior such as resizing buffers. | |
set mouse=a | |
if exists('$TMUX') " Support resizing in tmux | |
set ttymouse=xterm2 | |
endif | |
" keyboard shortcuts | |
let mapleader = ',' | |
map <C-h> <C-w>h | |
map <C-j> <C-w>j | |
map <C-k> <C-w>k | |
map <C-l> <C-w>l | |
map <leader>l :Align | |
nmap <leader>a :Ack<space> | |
nmap <leader>b :CtrlPBuffer<CR> | |
nmap <leader>d :NERDTreeToggle<CR> | |
nmap <leader>f :NERDTreeFind<CR> | |
nmap <leader>t :CtrlP<CR> | |
nmap <leader>T :CtrlPClearCache<CR>:CtrlP<CR> | |
nmap <leader>] :TagbarToggle<CR> | |
nmap <leader><space> :call whitespace#strip_trailing()<CR> | |
nmap <leader>g :GitGutterToggle<CR> | |
nmap <leader>c <Plug>Kwbd | |
map <silent> <leader>V :source ~/.vimrc<CR>:filetype detect<CR>:exe ":echo 'vimrc reloaded'"<CR> | |
" plugin settings | |
let g:ctrlp_match_window = 'order:ttb,max:20' | |
let g:ctrlp_working_path_mode = 0 | |
let g:NERDSpaceDelims=1 | |
let g:gitgutter_enabled = 0 | |
" Use The Silver Searcher https://github.com/ggreer/the_silver_searcher | |
if executable('ag') | |
let g:ackprg = 'ag --nogroup --column' | |
" Use Ag over Grep | |
set grepprg=ag\ --nogroup\ --nocolor | |
" Use ag in CtrlP for listing files. Lightning fast and respects .gitignore | |
let g:ctrlp_user_command = 'ag %s -l --nocolor -g ""' | |
endif | |
" fdoc is yaml | |
autocmd BufRead,BufNewFile *.fdoc set filetype=yaml | |
" md is markdown | |
autocmd BufRead,BufNewFile *.md set filetype=markdown | |
" extra rails.vim help | |
autocmd User Rails silent! Rnavcommand decorator app/decorators -glob=**/* -suffix=_decorator.rb | |
autocmd User Rails silent! Rnavcommand observer app/observers -glob=**/* -suffix=_observer.rb | |
autocmd User Rails silent! Rnavcommand feature features -glob=**/* -suffix=.feature | |
autocmd User Rails silent! Rnavcommand job app/jobs -glob=**/* -suffix=_job.rb | |
autocmd User Rails silent! Rnavcommand mediator app/mediators -glob=**/* -suffix=_mediator.rb | |
autocmd User Rails silent! Rnavcommand stepdefinition features/step_definitions -glob=**/* -suffix=_steps.rb | |
" automatically rebalance windows on vim resize | |
autocmd VimResized * :wincmd = | |
" Fix Cursor in TMUX | |
if exists('$TMUX') | |
let &t_SI = "\<Esc>Ptmux;\<Esc>\<Esc>]50;CursorShape=1\x7\<Esc>\\" | |
let &t_EI = "\<Esc>Ptmux;\<Esc>\<Esc>]50;CursorShape=0\x7\<Esc>\\" | |
else | |
let &t_SI = "\<Esc>]50;CursorShape=1\x7" | |
let &t_EI = "\<Esc>]50;CursorShape=0\x7" | |
endif | |
" Go crazy! | |
if filereadable(expand("~/.vimrc.local")) | |
" In your .vimrc.local, you might like: | |
" | |
" set autowrite | |
" set nocursorline | |
" set nowritebackup | |
" set whichwrap+=<,>,h,l,[,] " Wrap arrow keys between lines | |
" | |
" autocmd! bufwritepost .vimrc source ~/.vimrc | |
" noremap! jj <ESC> | |
source ~/.vimrc.local | |
endif |
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" | |
# Uncomment the following line to use case-sensitive completion. | |
# CASE_SENSITIVE="true" | |
# Uncomment the following line to disable bi-weekly auto-update checks. | |
# DISABLE_AUTO_UPDATE="true" | |
# Uncomment the following line to change how often to auto-update (in days). | |
# export UPDATE_ZSH_DAYS=13 | |
# Uncomment the following line to disable colors in ls. | |
# DISABLE_LS_COLORS="true" | |
# Uncomment the following line to disable auto-setting terminal title. | |
# DISABLE_AUTO_TITLE="true" | |
# Uncomment the following line to enable command auto-correction. | |
# ENABLE_CORRECTION="true" | |
# Uncomment the following line to display red dots whilst waiting for completion. | |
# COMPLETION_WAITING_DOTS="true" | |
# Uncomment the following line if you want to disable marking untracked files | |
# under VCS as dirty. This makes repository status check for large repositories | |
# much, much faster. | |
# DISABLE_UNTRACKED_FILES_DIRTY="true" | |
# Uncomment the following line if you want to change the command execution time | |
# stamp shown in the history command output. | |
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" | |
# HIST_STAMPS="mm/dd/yyyy" | |
# Would you like to use another custom folder than $ZSH/custom? | |
# ZSH_CUSTOM=/path/to/new-custom-folder | |
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) | |
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ | |
# Example format: plugins=(rails git textmate ruby lighthouse) | |
# Add wisely, as too many plugins slow down shell startup. | |
plugins=(git autojump colored-man) | |
# User configuration | |
export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# export MANPATH="/usr/local/man:$MANPATH" | |
source $ZSH/oh-my-zsh.sh | |
# You may need to manually set your language environment | |
# export LANG=en_US.UTF-8 | |
# Preferred editor for local and remote sessions | |
# if [[ -n $SSH_CONNECTION ]]; then | |
# export EDITOR='vim' | |
# else | |
# export EDITOR='mvim' | |
# fi | |
# Compilation flags | |
# export ARCHFLAGS="-arch x86_64" | |
# ssh | |
# export SSH_KEY_PATH="~/.ssh/dsa_id" | |
# Set personal aliases, overriding those provided by oh-my-zsh libs, | |
# plugins, and themes. Aliases can be placed here, though oh-my-zsh | |
# users are encouraged to define aliases within the ZSH_CUSTOM folder. | |
# For a full list of active aliases, run `alias`. | |
# | |
# Example aliases | |
# alias zshconfig="mate ~/.zshrc" | |
# alias ohmyzsh="mate ~/.oh-my-zsh" | |
#scm breeze | |
[ -s "/home/uribe/.scm_breeze/scm_breeze.sh" ] && source "/home/uribe/.scm_breeze/scm_breeze.sh" |
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
SHELL | |
Download OH My ZSH -> https://github.com/robbyrussell/oh-my-zsh | |
Download SCM breeze -> https://github.com/ndbroadbent/scm_breeze | |
VIM | |
Download pathogen -> https://github.com/tpope/vim-pathogen | |
Nerdtree -> https://github.com/scrooloose/nerdtree |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment