This commit is contained in:
xdrm-brackets 2016-12-14 20:53:27 +01:00
parent 5819ea548b
commit 9120d1ced2
3 changed files with 19 additions and 1 deletions

View File

@ -8,6 +8,9 @@ call vundle#begin()
"call vundle#begin('~/some/path/here') "call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required " let Vundle manage Vundle, required
Plugin 'junegunn/vim-easy-align'
Plugin 'jelera/vim-javascript-syntax'
Plugin 'elzr/vim-json'
Plugin 'SirVer/ultisnips' Plugin 'SirVer/ultisnips'
Plugin 'jistr/vim-nerdtree-tabs' Plugin 'jistr/vim-nerdtree-tabs'
Plugin 'Lokaltog/powerline' Plugin 'Lokaltog/powerline'

View File

@ -18,6 +18,5 @@ set tabstop=5
set path+=** set path+=**
" abbreviations " abbreviations
ab t tabnew<Enter>
ab tf tabfind ab tf tabfind

16
update Executable file
View File

@ -0,0 +1,16 @@
#!/bin/sh
targ="$HOME/.vim"
# remove files
rm -r .vimrc;
rm -r ./colors;
rm -r ./config;
rm -r ./snippets;
# copy updated files
cp -r $HOME/.vimrc ./.vimrc;
cp -r $targ/colors ./colors;
cp -r $targ/config ./config;
cp -r $targ/snippets ./snippets;