Created
July 16, 2014 05:46
-
-
Save pgdaniel/e10947b36648d268d894 to your computer and use it in GitHub Desktop.
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
| " Use Vim settings, rather then Vi settings. This setting must be as early as | |
| " possible, as it has side effects. | |
| set nocompatible " be iMproved, required | |
| filetype off " required | |
| " set the runtime path to include Vundle and initialize | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| " alternatively, pass a path where Vundle should install plugins | |
| "call vundle#begin('~/some/path/here') | |
| " let Vundle manage Vundle, required | |
| Plugin 'gmarik/Vundle.vim' | |
| Bundle 'kien/ctrlp.vim.git' | |
| Bundle 'tpope/vim-rails.git' | |
| Bundle 'tpope/vim-bundler.git' | |
| Bundle 'tpope/vim-dispatch.git' | |
| Bundle 'tpope/vim-fugitive.git' | |
| Bundle 'tpope/vim-surround.git' | |
| Bundle 'mattn/emmet-vim.git' | |
| Bundle 'vim-scripts/tComment' | |
| Bundle 'mileszs/ack.vim' | |
| Bundle 'kchmck/vim-coffee-script' | |
| Bundle 'scrooloose/syntastic' | |
| Bundle 'mustache/vim-mustache-handlebars' | |
| Bundle 'ngmy/vim-rubocop' | |
| Bundle 'thoughtbot/vim-rspec' | |
| " All of your Plugins must be added before the following line | |
| call vundle#end() " required | |
| filetype plugin indent on " required | |
| " Leader | |
| let mapleader = " " | |
| set backspace=2 " Backspace deletes like most programs in insert mode | |
| set nobackup | |
| set nowritebackup | |
| set noswapfile " http://robots.thoughtbot.com/post/18739402579/global-gitignore#comment-458413287 | |
| set history=50 | |
| set ruler " show the cursor position all the time | |
| set showcmd " display incomplete commands | |
| set incsearch " do incremental searching | |
| set laststatus=2 " Always display the status line | |
| set autowrite " Automatically :write before running commands | |
| " Switch syntax highlighting on, when the terminal has colors | |
| " Also switch on highlighting the last used search pattern. | |
| if (&t_Co > 2 || has("gui_running")) && !exists("syntax_on") | |
| syntax on | |
| endif | |
| if filereadable(expand("~/.vimrc.bundles")) | |
| source ~/.vimrc.bundles | |
| endif | |
| filetype plugin indent on | |
| augroup vimrcEx | |
| autocmd! | |
| " For all text files set 'textwidth' to 78 characters. | |
| autocmd FileType text setlocal textwidth=78 | |
| " When editing a file, always jump to the last known cursor position. | |
| " Don't do it for commit messages, when the position is invalid, or when | |
| " inside an event handler (happens when dropping a file on gvim). | |
| autocmd BufReadPost * | |
| \ if &ft != 'gitcommit' && line("'\"") > 0 && line("'\"") <= line("$") | | |
| \ exe "normal g`\"" | | |
| \ endif | |
| " Cucumber navigation commands | |
| autocmd User Rails Rnavcommand step features/step_definitions -glob=**/* -suffix=_steps.rb | |
| autocmd User Rails Rnavcommand config config -glob=**/* -suffix=.rb -default=routes | |
| " Set syntax highlighting for specific file types | |
| autocmd BufRead,BufNewFile Appraisals set filetype=ruby | |
| autocmd BufRead,BufNewFile *.md set filetype=markdown | |
| " Enable spellchecking for Markdown | |
| autocmd FileType markdown setlocal spell | |
| " Automatically wrap at 80 characters for Markdown | |
| autocmd BufRead,BufNewFile *.md setlocal textwidth=80 | |
| augroup END | |
| " Softtabs, 2 spaces | |
| set tabstop=2 | |
| set shiftwidth=2 | |
| set shiftround | |
| set expandtab | |
| " Display extra whitespace | |
| set list listchars=tab:»·,trail:· | |
| " Use The Silver Searcher https://github.com/ggreer/the_silver_searcher | |
| if executable('ag') | |
| " 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 ""' | |
| " ag is fast enough that CtrlP doesn't need to cache | |
| let g:ctrlp_use_caching = 0 | |
| endif | |
| " Color scheme | |
| set background=dark | |
| colorscheme delek | |
| highlight NonText guibg=#060606 | |
| highlight Folded guibg=#0A0A0A guifg=#9090D0 | |
| " Numbers | |
| set number | |
| set numberwidth=5 | |
| " Tab completion | |
| " will insert tab at beginning of line, | |
| " will use completion if not at beginning | |
| set wildmode=list:longest,list:full | |
| function! InsertTabWrapper() | |
| let col = col('.') - 1 | |
| if !col || getline('.')[col - 1] !~ '\k' | |
| return "\<tab>" | |
| else | |
| return "\<c-p>" | |
| endif | |
| endfunction | |
| inoremap <Tab> <c-r>=InsertTabWrapper()<cr> | |
| " Exclude Javascript files in :Rtags via rails.vim due to warnings when parsing | |
| let g:Tlist_Ctags_Cmd="ctags --exclude='*.js'" | |
| " Index ctags from any project, including those outside Rails | |
| map <Leader>ct :!ctags -R .<CR> | |
| " Switch between the last two files | |
| nnoremap <leader><leader> <c-^> | |
| " Get off my lawn | |
| nnoremap <Left> :echoe "Use h"<CR> | |
| nnoremap <Right> :echoe "Use l"<CR> | |
| nnoremap <Up> :echoe "Use k"<CR> | |
| nnoremap <Down> :echoe "Use j"<CR> | |
| " vim-rspec mappings | |
| nnoremap <Leader>t :call RunCurrentSpecFile()<CR> | |
| nnoremap <Leader>s :call RunNearestSpec()<CR> | |
| nnoremap <Leader>l :call RunLastSpec()<CR> | |
| " Run commands that require an interactive shell | |
| nnoremap <Leader>r :RunInInteractiveShell<space> | |
| " Treat <li> and <p> tags like the block tags they are | |
| let g:html_indent_tags = 'li\|p' | |
| " Open new split panes to right and bottom, which feels more natural | |
| set splitbelow | |
| set splitright | |
| " Quicker window movement | |
| nnoremap <C-j> <C-w>j | |
| nnoremap <C-k> <C-w>k | |
| nnoremap <C-h> <C-w>h | |
| nnoremap <C-l> <C-w>l | |
| " configure syntastic syntax checking to check on open as well as save | |
| let g:syntastic_check_on_open=1 | |
| let g:syntastic_html_tidy_ignore_errors=[" proprietary attribute \"ng-"] | |
| " Local config | |
| if filereadable($HOME . "/.vimrc.local") | |
| source ~/.vimrc.local | |
| endif | |
| let g:rspec_command = "Dispatch rspec {spec}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment