Initial commit - less complicated than expected
This commit is contained in:
commit
a27aca395c
3 changed files with 35 additions and 0 deletions
1
home/.vim/ftplugin/crontab.vim
Normal file
1
home/.vim/ftplugin/crontab.vim
Normal file
|
@ -0,0 +1 @@
|
||||||
|
set backupcopy=yes
|
2
home/.vim/ftplugin/html.vim
Normal file
2
home/.vim/ftplugin/html.vim
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
let b:html_mode = 1
|
||||||
|
runtime! ftplugin/xml.vim
|
32
home/.vimrc
Normal file
32
home/.vimrc
Normal 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
|
Loading…
Reference in a new issue