Skip to content

Instantly share code, notes, and snippets.

@dotslash
Last active September 13, 2016 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dotslash/e383bdaf7d087365dd49dec561672d25 to your computer and use it in GitHub Desktop.
Save dotslash/e383bdaf7d087365dd49dec561672d25 to your computer and use it in GitHub Desktop.
" ===============VUNDLE============
set nocompatible " be iMproved, required
filetype off " required
" 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 'altercation/vim-colors-solarized'
" Plugin 'kien/ctrlp.vim'
Plugin 'scrooloose/syntastic'
Plugin 'Valloric/YouCompleteMe'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
" more color schemes
Plugin 'flazz/vim-colorschemes'
" Plugin 'SirVer/ultisnips'
" Plugin 'honza/vim-snippets'
" Add maktaba and codefmt to the runtimepath.
" (The latter must be installed before it can be used.)
Plugin 'google/vim-maktaba'
Plugin 'google/vim-codefmt'
" Also add Glaive, which is used to configure codefmt's maktaba flags. See
" `:help :Glaive` for usage.
Plugin 'google/vim-glaive'
" git stuff
Plugin 'tpope/vim-fugitive'
" All of your Plugins must be added before the following line
call vundle#end() " required
call glaive#Install()
" Optional: Enable codefmt's default mappings on the <Leader>= prefix.
" Glaive codefmt plugin[mappings]
" To ignore plugin indent changes, instead use:
" filetype plugin on
"===STATUS LINE===
let g:airline_theme='dark'
" better seperators
let g:airline_left_sep = '»'
let g:airline_left_sep = '▶'
let g:airline_right_sep = '«'
let g:airline_right_sep = '◀'
" show buffers name,number as tabs on top
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tabline#buffer_nr_show = 1
set laststatus=2
"===status line end===
filetype plugin indent on
syntax on
colorscheme 256-jungle
set paste
set mouse=a
set hlsearch
set ai
set softtabstop=4 shiftwidth=4 expandtab
set number
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment