Initial commit - less complicated than expected

This commit is contained in:
Danielle McLean 2016-10-02 21:13:50 +11:00
commit a27aca395c
No known key found for this signature in database
GPG Key ID: CC91589719027E94
3 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1 @@
set backupcopy=yes

View File

@ -0,0 +1,2 @@
let b:html_mode = 1
runtime! ftplugin/xml.vim

32
home/.vimrc Normal file
View File

@ -0,0 +1,32 @@
if has('win32')
set runtimepath=~/.vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,~/.vim/after
set viminfo+=n~/.viminfo
endif
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
endif
call plug#begin('~/.vim/bundle')
Plug 'tpope/vim-sensible'
Plug 'ciaranm/inkpot'
Plug 'ervandew/supertab'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-sleuth'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-unimpaired'
Plug 'wincent/terminus'
Plug 'sukima/xmledit'
if has('macunix')
Plug 'itspriddle/vim-marked'
endif
call plug#end()
colorscheme inkpot
inoremap jj <Esc>
set tabstop=2 shiftwidth=2