set encoding=utf-8 scriptencoding utf-8 if !filereadable($XDG_CACHE_HOME . '/vim/autoload/plug.vim') silent !curl -fLo $XDG_CACHE_HOME/vim/autoload/plug.vim --create-dirs 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' augroup vimplug autocmd VimEnter * PlugInstall augroup END endif call plug#begin($XDG_CACHE_HOME . '/vim/bundle') Plug 'tpope/vim-sensible' Plug 'ciaranm/inkpot' Plug 'ervandew/supertab' Plug 'junegunn/fzf' | Plug 'junegunn/fzf.vim' Plug 'junegunn/vim-easy-align' Plug 'powerline/powerline', {'branch': 'develop', 'rtp': 'powerline/bindings/vim/'} Plug 'tpope/vim-repeat' Plug 'tpope/vim-sleuth' Plug 'tpope/vim-surround' Plug 'tpope/vim-unimpaired' Plug 'wincent/loupe' Plug 'wincent/terminus' Plug 'LaTeX-Box-Team/LaTeX-Box' Plug 'sheerun/vim-polyglot' Plug 'sukima/xmledit' if has('job') Plug 'w0rp/ale' endif if has('macunix') Plug 'itspriddle/vim-marked' endif call plug#end() colorscheme inkpot hi Normal ctermbg=NONE inoremap jj nnoremap :Files set linebreak showbreak=↩ set showcmd set wildmode=longest,full set tabstop=2 shiftwidth=2 if exists('+breakindent') set breakindent breakindentopt=sbr endif if exists('+relativenumber') set relativenumber else set number endif let g:LatexBox_Folding = 1