blob: 87966195a1296b0b5d63ab2bb84656e931d026b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
" automatische Installation vom vim-plug
let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim'
if empty(glob(data_dir . '/autoload/plug.vim'))
silent execute '!curl -fLo '.data_dir.'/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
endif
" vim-plug
call plug#begin()
Plug 'mattn/emmet-vim'
Plug 'romainl/vim-cool'
Plug 'preservim/nerdtree' | Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-surround'
call plug#end()
" EMMET
let g:user_emmet_install_global=0
let g:user_emmet_leader_key='<C-y>'
" NERDTree
let NERDTreeMinimalUI=1
let NERDTreeShowHidden=1
let g:NERDTreeGitStatusUntrackedFilesMode='all'
let g:NERDTreeGitStatusShowClean=1
let g:NERDTreeGitStatusConcealBrackets=1
|