Begin migrating from Vundle to Vim8 packages.

This commit is contained in:
David Tomaschik
2019-03-19 20:23:54 -07:00
parent 6bd457700e
commit b3224e9ad3
6 changed files with 5 additions and 30 deletions

3
.gitmodules vendored Normal file
View File

@@ -0,0 +1,3 @@
[submodule "dotfiles/vim/pack/matir/opt/solarized8"]
path = dotfiles/vim/pack/matir/opt/solarized8
url = https://github.com/lifepillar/vim-solarized8.git

View File

View File

View File

@@ -1,30 +1,6 @@
" Allow full use of vim options " Allow full use of vim options
set nocompatible set nocompatible
" Enable Vundle if installed
if filereadable(glob("~/.vim/bundle/Vundle.vim/README.md"))
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'nvie/vim-flake8'
Plugin 'tell-k/vim-autopep8'
Plugin 'tpope/vim-fugitive'
Plugin 'mileszs/ack.vim'
Plugin 'tpope/vim-unimpaired'
Plugin 'scrooloose/syntastic'
Plugin 'mattn/webapi-vim'
Plugin 'mattn/gist-vim'
Plugin 'altercation/vim-colors-solarized'
Plugin 'vimoutliner/vimoutliner'
Plugin 'PotatoesMaster/i3-vim-syntax'
Plugin 'Matt-Deacalion/vim-systemd-syntax'
Plugin 'fatih/vim-go'
Plugin 'vhda/verilog_systemverilog.vim'
Plugin 'editorconfig/editorconfig-vim'
call vundle#end()
endif
" Setup paths " Setup paths
set backupdir=~/.cache/vim/backup// set backupdir=~/.cache/vim/backup//
set directory=~/.cache/vim/swap// set directory=~/.cache/vim/swap//
@@ -64,7 +40,7 @@ else
let g:solarized_termcolors=256 let g:solarized_termcolors=256
let g:solarized_termtrans=1 let g:solarized_termtrans=1
endif endif
silent! colorscheme solarized silent! colorscheme solarized8
" Enable filetype support " Enable filetype support
filetype plugin indent on filetype plugin indent on
" Default ASM syntax for ft support " Default ASM syntax for ft support

View File

@@ -44,11 +44,6 @@ prerequisites() {
else else
echo "ZSH not found!" >&2 echo "ZSH not found!" >&2
fi fi
if which vim > /dev/null 2>&1 ; then
mkdir -p $HOME/.vim/bundle
install_git https://github.com/VundleVim/Vundle.vim.git \
$HOME/.vim/bundle/Vundle.vim
fi
} }
install_dotfile_dir() { install_dotfile_dir() {