filetype off " Plugins set rtp+=~/.vim/bundle/Vundle.vim set rtp+=~/.fzf call vundle#begin() " Core Plugin 'gmarik/Vundle.vim' Plugin 'wakatime/vim-wakatime' Plugin 'junegunn/fzf.vim' Plugin 'ctrlpvim/ctrlp.vim' Plugin 'tpope/vim-dispatch' Plugin 'Valloric/YouCompleteMe' Plugin 'SirVer/ultisnips' Plugin 'honza/vim-snippets' Plugin 'w0rp/ale' " UI Plugin 'scrooloose/nerdtree' Plugin 'vim-airline/vim-airline' Plugin 'powerline/powerline' Plugin 'mhinz/vim-startify' Plugin 'morhetz/gruvbox' " Languages Plugin 'plasticboy/vim-markdown' Plugin 'jceb/vim-orgmode' Plugin 'OmniSharp/omnisharp-vim' " Plugins Plugin 'godlygeek/tabular' Plugin 'tpope/vim-commentary' Plugin 'tpope/vim-fugitive' Plugin 'tpope/vim-surround' Plugin 'ervandew/supertab' Plugin 'tpope/vim-speeddating' " Other Plugin 'rhysd/vim-clang-format' Plugin 'python-rope/ropevim' call vundle#end() " Standard variables syntax enable filetype plugin indent on set nocompatible set ignorecase set smartcase set clipboard=unnamed set number set nobackup set noundofile set nowritebackup set nohlsearch set tabstop=4 set softtabstop=4 set expandtab set shiftwidth=4 set foldmethod=syntax set foldlevel=99 let mapleader = ' ' " Theming let g:airline_theme = 'vorange' colorscheme gruvbox " Dir Config let g:NERDTreeHijackNetrw = 1 " Language Config let g:OmniSharp_server_stdio = 1 let g:OmniSharp_selector_ui = 'fzf' " Tool Config let g:ycm_key_list_select_completion = ['', ''] let g:ycm_key_list_previous_completion = ['', ''] let g:SuperTabDefaultCompletionType = '' let g:UltiSnipsExpandTrigger = '' let g:UltiSnipsJumpForwardTrigger = '' let g:UltiSnipsJumpBackwardTrigger = '' " Keybinds " General keybind nnoremap fed :e ~/.vimrc nnoremap fei :e ~/.vim/ftplugin nnoremap fer :so ~/.vimrc:PluginInstall " File Management nnoremap fr :e! nnoremap fs :w nnoremap fq :wq nnoremap fn :enew nnoremap :set hlsearch! hlsearch? " Buffer Management nnoremap bb :Buffers nnoremap bn :bn nnoremap bp :bp nnoremap bd :bd " Window Management nnoremap ww :Windows " Splits nnoremap w/ v nnoremap w- s nnoremap wd q " Resizes nnoremap w^ :resize -5 nnoremap w :resize +5 nnoremap w> 5> nnoremap w< 5< " Movement nnoremap wj nnoremap wk nnoremap wl nnoremap wh " Searches nnoremap ss :BLines nnoremap sf :Lines nnoremap st :BTags nnoremap tt :Tags nnoremap ff :Files " Nerd Tree Config nnoremap tt :NERDTreeToggle nnoremap tf :NERDTreeFocus