Created
May 9, 2013 11:54
-
-
Save tabruhn/5547035 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
| set nocompatible " Must come first because it changes other options. | |
| map <Leader>m <Plug>MakeGreen | |
| let g:rubytest_in_quickfix = 1 | |
| let g:LustyJugglerSuppressRubyWarning = 1 | |
| silent! call pathogen#runtime_append_all_bundles() | |
| syntax enable " Turn on syntax highlighting. | |
| filetype plugin indent on " Turn on file type detection. | |
| "set runtimepath+=~~/.vim/dotvim-full/autoload | |
| runtime macros/matchit.vim " Load the matchit plugin. | |
| set showcmd " Display incomplete commands. | |
| set showmode " Display the mode you're in. | |
| set backspace=indent,eol,start " Intuitive backspacing. | |
| set hidden " Handle multiple buffers better. | |
| set wildmenu " Enhanced command line completion. | |
| set wildmode=list:longest " Complete files like a shell. | |
| set ignorecase " Case-insensitive searching. | |
| set smartcase " But case-sensitive if expression contains a capital letter. | |
| set number " Show line numbers. | |
| set ruler " Show cursor position. | |
| set incsearch " Highlight matches as you type. | |
| set hlsearch " Highlight matches. | |
| set wrap " Turn on line wrapping. | |
| set scrolloff=3 " Show 3 lines of context around the cursor. | |
| set title " Set the terminal's title | |
| set visualbell " No beeping. | |
| set nobackup " Don't make a backup before overwriting a file. | |
| set nowritebackup " And again. | |
| set directory=$HOME/.vim/tmp//,. " Keep swap files in one location | |
| " UNCOMMENT TO USE | |
| set tabstop=2 " Global tab width. | |
| "set shiftwidth=2 " And again, related. | |
| "set expandtab " Use spaces instead of tabs | |
| set laststatus=2 " Show the status line all the time | |
| " Useful status information at bottom of screen | |
| set statusline=[%n]\ %<%.99f\ %h%w%m%r%y\ %{fugitive#statusline()}%{exists('*CapsLockStatusline')?CapsLockStatusline():''}%=%-16(\ %l,%c-%v\ %)%P | |
| " Or use vividchalk | |
| colorscheme topfunky-light | |
| " Tab mappings. | |
| map <leader>tt :tabnew<cr> | |
| map <leader>te :tabedit | |
| map <leader>tc :tabclose<cr> | |
| map <leader>to :tabonly<cr> | |
| map <leader>tn :tabnext<cr> | |
| map <leader>tp :tabprevious<cr> | |
| map <leader>tf :tabfirst<cr> | |
| map <leader>tl :tablast<cr> | |
| map <leader>tm :tabmove | |
| " Uncomment to use Jamis Buck's file opening plugin | |
| map <Leader>t :FuzzyFinderTextMate<Enter> | |
| " Controversial...swap colon and semicolon for easier commands | |
| "nnoremap ; : | |
| "nnoremap : ; | |
| "vnoremap ; : | |
| "vnoremap : ; | |
| " Automatic fold settings for specific files. Uncomment to use. | |
| " autocmd FileType ruby setlocal foldmethod=syntax | |
| " autocmd FileType css setlocal foldmethod=indent shiftwidth=2 tabstop=2 | |
| " For the MakeGreen plugin and Ruby RSpec. Uncomment to use. | |
| autocmd BufNewFile,BufRead *_spec.rb compiler rspec | |
| let Tlist_Ctags_Cmd = '/usr/local/bin/ctags' | |
| "map <Leader>mg :call MakeGreen()<cr> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment