浏览代码

added cloning of plugins to setup-vim.sh
removed creation of folder for ctrl-p plugin, since I won't use it
anymore

bananicorn 6 年之前
父节点
当前提交
fdfb970cf0
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. 7 1
      setup-vim.sh

+ 7 - 1
setup-vim.sh

@@ -1,7 +1,13 @@
 #!/bin/bash
 cp .vimrc ~/.vimrc
 mkdir ~/.vim
-mkdir ~/.vim/bundle #this is for Ctrl-P
 mkdir ~/.vim/plugin
 mkdir ~/.vim/undofiles
 mkdir ~/.vim/swapfiles
+mkdir ~/.vim/sessions
+
+#install all the plugins
+cd ~/.vim/plugin
+git clone "https://github.com/scrooloose/nerdcommenter"
+git clone "https://github.com/wesQ3/vim-windowswap"
+git clone "https://github.com/editorconfig/editorconfig-vim"