set nocompatible " be iMproved, required filetype plugin on " Plugins " 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 'ervandew/supertab' Plugin 'tpope/vim-surround' Plugin 'tpope/vim-repeat' Plugin 'racer-rust/vim-racer' Plugin 'davidhalter/jedi-vim' Plugin 'agude/vim-eldar' Plugin 'scrooloose/nerdtree' " Track the engine. Plugin 'SirVer/ultisnips' " Snippets are separated from the engine. Add this if you want them: Plugin 'honza/vim-snippets' Plugin 'junegunn/goyo.vim' Plugin 'jreybert/vimagit' call vundle#end() " required filetype plugin indent on " required colorscheme eldar syntax enable set number relativenumber set tabstop=4 set shiftwidth=4 set softtabstop=4 set noexpandtab set inccommand=split " Required for operations modifying multiple buffers like rename. set hidden " Snippits " Trigger configuration. Do not use if you use https://github.com/Valloric/YouCompleteMe. let g:UltiSnipsExpandTrigger="" let g:UltiSnipsJumpForwardTrigger="" let g:UltiSnipsJumpBackwardTrigger="" " If you want :UltiSnipsEdit to split your window. let g:UltiSnipsEditSplit="vertical" " inoremap pumvisible() ? "\" : "\" " inoremap pumvisible() ? "\" : "\" " File finding set path+=** set wildmenu let g:netrw_liststyle=3 " autocmd BufEnter * call ncm2#enable_for_buffer() " let g:ncm2#auto_popup = 0 set completeopt=menuone,preview " Keymapping map :NERDTreeToggle " Leader stuff let mapleader=" " map z :Goyo map mm :make V=1 map mf :!make flash V=1 " Example on filetype specific " autocmd FileType tex map o :w !detex \| wc -w " Enforcing filetypes autocmd BufRead,BufNewFile *.ino set filetype=c autocmd FileType python setlocal completeopt-=preview