Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- set nocompatible
- set gfn=PragmataPro\ 13
- " filetype func off
- filetype off
- set backspace=indent,eol,start " allow backspacing over everything in insert mode
- set linespace=2
- set expandtab
- set nu
- set autoindent
- set ruler
- set showcmd
- set incsearch
- set wrap linebreak nolist
- map <F2> :w!<CR>
- map <F3> :NERDTreeToggle<CR>
- map <F4> :bdelete<CR>
- map <F5> :bprevious<CR>
- map <F6> :bnext<CR>
- if has('gui_running')
- syntax on
- set guioptions-=m
- set guioptions-=T
- endif
- " initialize vundle
- set rtp+=~/.vim/bundle/Vundle.vim
- call vundle#begin()
- " start- all plugins below
- Plugin 'VundleVim/Vundle.vim'
- Plugin 'morhetz/gruvbox'
- Plugin 'scrooloose/nerdtree'
- Plugin 'flazz/vim-colorschemes'
- Plugin 'vim-airline/vim-airline'
- Plugin 'vim-airline/vim-airline-themes'
- Plugin 'vim-syntastic/syntastic'
- Plugin 'Valloric/YouCompleteMe'
- Plugin 'lervag/vimtex'
- set laststatus=2
- " vimtex config
- let g:vimtex_view_method = 'mupdf'
- let g:vimtex_view_general_viewer='mupdf'
- " stop - all plugins above
- call vundle#end()
- " filetype func on
- filetype plugin indent on
- " set color
- colorscheme inkpot
- set background=dark
- " do not load ycm
- let g:loaded_youcompleteme = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement