Advertisement
Guest User

my bin stuff

a guest
Mar 4th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.68 KB | None | 0 0
  1.   set nocompatible              " be iMproved, required
  2.   filetype off                  " required
  3.  
  4.  
  5.   "Sets
  6.   set showmode
  7.   set nu
  8.   set background=light
  9.   set expandtab
  10.   set tabstop=2
  11.   set shiftwidth=2
  12.   syntax enable
  13.   "Commands
  14.   command Ntt NERDTreeToggle
  15.  
  16.   " set the runtime path to include Vundle and initialize
  17.   set rtp+=~/.vim/bundle/Vundle.vim
  18.   call vundle#begin()
  19.   " alternatively, pass a path where Vundle should install plugins
  20.   "call vundle#begin('~/some/path/here')
  21.  
  22.   " let Vundle manage Vundle, required
  23.   Plugin 'VundleVim/Vundle.vim'
  24.   Plugin 'scrooloose/nerdtree.git'
  25.   Plugin 'ctrlpvim/ctrlp.vim'
  26.   Plugin 'Lokaltog/vim-powerline.git'
  27.   Plugin 'jelera/vim-javascript-syntax'
  28.   Plugin 'vim-scripts/AutoComplPop'
  29.   Plugin 'mattn/emmet-vim'
  30.   Plugin 'jiangmiao/auto-pairs.git'
  31.   Plugin 'tpope/vim-dispatch'
  32.   Plugin 'tpope/vim-projectionist'
  33.   Plugin 'noahfrederick/vim-composer'
  34.   Plugin 'noahfrederick/vim-laravel'
  35.   "Plugin 'altercation/vim-colors-solarized'
  36.   "Plugin 'powerline/powerline.git'
  37.   " All of your Plugins must be added before the following line
  38.   call vundle#end()            " required
  39.   filetype plugin indent on    " required
  40.   " To ignore plugin indent changes, instead use:
  41.   "filetype plugin on
  42.   "
  43.   " Brief help
  44.   " :PluginList       - lists configured plugins
  45.   " :PluginInstall    - installs plugins; append `!` to update or just :PluginUpdate
  46.   " :PluginSearch foo - searches for foo; append `!` to refresh local cache
  47.   " :PluginClean      - confirms removal of unused plugins; append `!` to auto-approve removal
  48.   "
  49.   " see :h vundle for more details or wiki for FAQ
  50.   " Put your non-Plugin stuff after this line
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement