diff options
Diffstat (limited to 'lib/vimrc')
-rw-r--r-- | lib/vimrc | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -104,8 +104,6 @@ function! <SID>SynStack() echo map(synstack(line('.'), col('.')), 'synIDattr(v:val, "name")') endfunc -colorscheme basic-dark - " A function for setting colors, if I want it... function! s:hi(...) let group = a:1 @@ -133,3 +131,8 @@ function! s:hi(...) exec join(cmd, ' ') endfunction +call plug#begin('~/.vim/plugged') +Plug 'wfxr/minimap.vim' +call plug#end() + +let g:minimap_auto_start=1 |