Created
October 28, 2015 13:28
-
-
Save jinie/f53042c5efff639a3160 to your computer and use it in GitHub Desktop.
vimrc
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 | |
filetype off | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
" Let Vundle manage Vundle | |
Bundle 'gmarik/vundle' | |
" My Bundles | |
Bundle 'tpope/vim-sensible' | |
Bundle 'tpope/vim-surround' | |
Bundle 'tpope/vim-fugitive' | |
"Bundle 'tpope/vim-rails' | |
Bundle 'tpope/vim-rake' | |
Bundle 'nanotech/jellybeans.vim' | |
" Bundle 'Lokaltog/vim-powerline' | |
Bundle 'itchyny/lightline.vim' | |
Bundle 'scrooloose/syntastic' | |
Bundle 'scrooloose/nerdtree' | |
Bundle 'kien/ctrlp.vim' | |
Bundle 'rking/ag.vim' | |
Bundle 'kana/vim-textobj-user' | |
Bundle 'nelstrom/vim-textobj-rubyblock' | |
Bundle 'slim-template/vim-slim' | |
Bundle 'croaker/mustang-vim' | |
Bundle 'davidhalter/jedi-vim' | |
" Bundle 'Python-mode-klen' | |
Bundle 'fholgado/minibufexpl.vim' | |
filetype plugin indent on | |
let mapleader="," | |
color mustang | |
set guifont=Source\ Code\ Pro:h12 | |
set cursorline | |
set modelines=0 | |
set shiftwidth=2 | |
set clipboard=unnamed | |
set synmaxcol=128 | |
set ttyscroll=10 | |
set encoding=utf-8 | |
set tabstop=2 | |
set nowrap | |
set number | |
set expandtab | |
set nowritebackup | |
set noswapfile | |
set nobackup | |
set hlsearch | |
set ignorecase | |
set smartcase | |
" Automatic formatting | |
autocmd BufWritePre *.rb :%s/\s\+$//e | |
autocmd BufWritePre *.go :%s/\s\+$//e | |
autocmd BufWritePre *.haml :%s/\s\+$//e | |
autocmd BufWritePre *.html :%s/\s\+$//e | |
autocmd BufWritePre *.scss :%s/\s\+$//e | |
autocmd BufWritePre *.slim :%s/\s\+$//e | |
au BufNewFile * set noeol | |
au BufRead,BufNewFile *.go set filetype=go | |
" No show command | |
autocmd VimEnter * set nosc | |
" Quick ESC | |
imap jj <ESC> | |
" Jump to the next row on long lines | |
map <Down> gj | |
map <Up> gk | |
nnoremap j gj | |
nnoremap k gk | |
" format the entire file | |
nmap <leader>fef ggVG= | |
" Open new buffers | |
nmap <leader>s<left> :leftabove vnew<cr> | |
nmap <leader>s<right> :rightbelow vnew<cr> | |
nmap <leader>s<up> :leftabove new<cr> | |
nmap <leader>s<down> :rightbelow new<cr> | |
" Tab between buffers | |
noremap <tab> <c-w><c-w> | |
" Switch between last two buffers | |
nnoremap <leader><leader> <C-^> | |
" Resize buffers | |
if bufwinnr(1) | |
nmap Ä <C-W><<C-W>< | |
nmap Ö <C-W>><C-W>> | |
nmap ö <C-W>-<C-W>- | |
nmap ä <C-W>+<C-W>+ | |
endif | |
map <F2> :nohl<CR> | |
" NERDTree | |
nmap <leader>n :NERDTreeToggle<CR> | |
let NERDTreeHighlightCursorline=1 | |
let NERDTreeIgnore = ['tmp', '.yardoc', 'pkg'] | |
" Syntastic | |
let g:syntastic_mode_map = { 'mode': 'passive' } | |
let g:syntastic_ruby_exec = '~/.rvm/rubies/ruby-2.0.0-p0/bin/ruby' | |
" CtrlP | |
nnoremap <silent> t :CtrlP<cr> | |
let g:ctrlp_working_path_mode = 2 | |
let g:ctrlp_by_filename = 1 | |
let g:ctrlp_max_files = 600 | |
let g:ctrlp_max_depth = 5 | |
" Go programming | |
set rtp+=/usr/local/Cellar/go/1.0.3/misc/vim | |
" Quit with :Q | |
command -nargs=0 Quit :qa! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment