diff options
author | Ben Sima <ben@bsima.me> | 2020-12-28 14:24:09 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-12-28 14:24:09 -0500 |
commit | 213213e14f2c566aff83da75ec7e33aa4d755c6e (patch) | |
tree | 15b824d0d7e22d8cc8110d197f0e6a92e922add3 | |
parent | a2ffdc6fa80b9933481bf36eed41296c05a30b26 (diff) |
vim: plug and remove colorscheme basic-dark
-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 |