Skip to content

Instantly share code, notes, and snippets.

@russleyshaw
Created December 8, 2017 15:58
Show Gist options
  • Save russleyshaw/3dcd9523ada513f18bdd557ac3643328 to your computer and use it in GitHub Desktop.
Save russleyshaw/3dcd9523ada513f18bdd557ac3643328 to your computer and use it in GitHub Desktop.
.vimrc
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'airblade/vim-gitgutter'
Plugin 'itchyny/lightline.vim'
Plugin 'easymotion/vim-easymotion'
Plugin 'leafgarland/typescript-vim'
Plugin 'tpope/vim-sensible'
Plugin 'scrooloose/nerdtree'
call vundle#end()
filetype plugin indent on
set nowrap
set tabstop=4
set shiftwidth=4
set expandtab
set number
set history=1000
set undolevels=1000
set title
set visualbell
set noerrorbells
set nobackup
set noswapfile
map <C-n> :NERDTreeToggle<CR>
let g:NERDTreeDirArrowExpandable = '>'
let g:NERDTreeDirArrowCollapsible = 'V'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment