Skip to content

Instantly share code, notes, and snippets.

@reflechant
Created November 29, 2016 15:03
Show Gist options
  • Save reflechant/05c39d00c829491ad0ccd03b4174b254 to your computer and use it in GitHub Desktop.
Save reflechant/05c39d00c829491ad0ccd03b4174b254 to your computer and use it in GitHub Desktop.
set nocompatible
autocmd FileType python set expandtab
syntax on
" set number
set tabstop=4
set autoindent
set shiftwidth=4
" set cursorline
set showmatch
let python_highlight_all=1
set hlsearch
" switch off hlsearch easily
nnoremap <silent> <Leader>/ :nohlsearch<CR>
" switch off Ex mode
nnoremap Q <nop>
colorscheme evening
filetype off "required by Vundle
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'fatih/vim-go'
Plugin 'scrooloose/nerdtree'
Plugin 'shougo/neocomplete'
Plugin 'garyburd/go-explorer'
Plugin 'jiangmiao/auto-pairs'
Plugin 'jlanzarotta/bufexplorer'
"Plugin 'easymotion/vim-easymotion'
Plugin 'EasyMotion'
Plugin 'tmhedberg/matchit'
Plugin 'tpope/vim-fugitive'
Plugin 'airblade/vim-gitgutter'
Plugin 'mattn/gist-vim'
Plugin 'mattn/webapi-vim'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment