Skip to content
Snippets Groups Projects
Commit e616b458 authored by mtrame's avatar mtrame
Browse files

fixed the package man

parent 0a4e331f
No related branches found
No related tags found
No related merge requests found
......@@ -162,6 +162,13 @@ imap <Tab> <C-p>
execute pathogen#infect()
"------------------------------------------------------------
" Should install vim-plug if not already installed
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
" Specify a directory for plugins
" - For Neovim: ~/.local/share/nvim/plugged
" - Avoid using standard Vim directory names like 'plugin'
......@@ -197,6 +204,11 @@ Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
" Unmanaged plugin (manually installed and updated)
Plug '~/my-prototype-plugin'
" Pywal colorscheme
Plug 'dylanaraps/wal.vim'
colorscheme wal
" Initialize plugin system
" Start up NERDTree when no file is specified
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment