Guest User

Untitled

a guest
Feb 23rd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. " Leader
  2.  
  3. let mapleader = " "
  4.  
  5. set nocompatible " be iMproved, required
  6. set backspace=2
  7. set noswapfile " no swapfile
  8. set ruler " show the cursor position all the time
  9. set nowritebackup
  10. set autowrite
  11. set number " show line number
  12. set hlsearch " highlight search
  13. set mouse=a " enable mouse in all modes, hence a fro all
  14.  
  15. " Softabs, 2 spaces
  16.  
  17. set tabstop=2
  18. set shiftwidth=2
  19. set shiftround
  20. set expandtab
  21.  
  22. filetype off " required
  23.  
  24. " set the runtime path to include Vundle and initialize
  25. set rtp+=~/.vim/bundle/Vundle.vim
  26. call vundle#begin()
  27.  
  28. Plugin 'VundleVim/Vundle.vim'
  29.  
  30. " tpope's vim
  31. Plugin 'tpope/vim-fugitive'
  32. Plugin 'tpope/vim-surround'
  33. Plugin 'tpope/vim-rails'
  34. Plugin 'tpope/vim-repeat'
  35. Plugin 'christoomey/vim-tmux-runner'
  36.  
  37. Plugin 'thoughtbot/vim-rspec'
  38. Plugin 'git://git.wincent.com/command-t.git'
  39. Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
  40. Plugin 'ctrlpvim/ctrlp.vim'
  41. Plugin 'slim-template/vim-slim.git'
  42.  
  43. call vundle#end() " required
  44. syntax enable
  45. filetype plugin indent on
  46.  
  47. let g:ackprg = 'ag --nogroup --nocolor --column'
  48. let g:ctrlp_use_caching = 0 " disable caching in ctrlp
  49. let g:ctrlp_custom_ignore = 'node_modules\|DS_Store|git'
  50.  
  51. " configure vim tumx runner
Add Comment
Please, Sign In to add comment