More plugins, reorganisation, etc.
This commit is contained in:
parent
359cfe7a8c
commit
7ec682b53c
1 changed files with 17 additions and 9 deletions
|
@ -13,6 +13,9 @@ Plug 'tpope/vim-sensible'
|
||||||
|
|
||||||
Plug 'ciaranm/inkpot'
|
Plug 'ciaranm/inkpot'
|
||||||
Plug 'ervandew/supertab'
|
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-repeat'
|
||||||
Plug 'tpope/vim-sleuth'
|
Plug 'tpope/vim-sleuth'
|
||||||
Plug 'tpope/vim-surround'
|
Plug 'tpope/vim-surround'
|
||||||
|
@ -20,34 +23,39 @@ Plug 'tpope/vim-unimpaired'
|
||||||
Plug 'wincent/loupe'
|
Plug 'wincent/loupe'
|
||||||
Plug 'wincent/terminus'
|
Plug 'wincent/terminus'
|
||||||
|
|
||||||
|
Plug 'LaTeX-Box-Team/LaTeX-Box'
|
||||||
Plug 'sheerun/vim-polyglot'
|
Plug 'sheerun/vim-polyglot'
|
||||||
Plug 'sukima/xmledit'
|
Plug 'sukima/xmledit'
|
||||||
|
|
||||||
if has('macunix')
|
|
||||||
Plug 'itspriddle/vim-marked'
|
|
||||||
endif
|
|
||||||
|
|
||||||
if has('job')
|
if has('job')
|
||||||
Plug 'w0rp/ale'
|
Plug 'w0rp/ale'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if has('macunix')
|
||||||
|
Plug 'itspriddle/vim-marked'
|
||||||
|
endif
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
colorscheme inkpot
|
colorscheme inkpot
|
||||||
|
hi Normal ctermbg=NONE
|
||||||
|
|
||||||
inoremap jj <Esc>
|
inoremap jj <Esc>
|
||||||
|
nnoremap <C-t> :Files<CR>
|
||||||
|
|
||||||
set linebreak showbreak=↩
|
set linebreak showbreak=↩
|
||||||
set showcmd
|
set showcmd
|
||||||
set wildmode=longest,full
|
set wildmode=longest,full
|
||||||
|
|
||||||
|
set tabstop=2 shiftwidth=2
|
||||||
|
|
||||||
|
if exists('+breakindent')
|
||||||
|
set breakindent breakindentopt=sbr
|
||||||
|
endif
|
||||||
|
|
||||||
if exists('+relativenumber')
|
if exists('+relativenumber')
|
||||||
set relativenumber
|
set relativenumber
|
||||||
else
|
else
|
||||||
set number
|
set number
|
||||||
endif
|
endif
|
||||||
|
|
||||||
set tabstop=2 shiftwidth=2
|
let g:LatexBox_Folding = 1
|
||||||
|
|
||||||
if exists('+breakindent')
|
|
||||||
set breakindent breakindentopt=sbr
|
|
||||||
endif
|
|
||||||
|
|
Loading…
Reference in a new issue