diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1377554 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.swp diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..f172550 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,18 @@ +[submodule "pathogen"] + path = pathogen + url = https://github.com/tpope/vim-pathogen +[submodule "bundle/molokai"] + path = bundle/molokai + url = https://github.com/tomasr/molokai +[submodule "bundle/vim-markdown"] + path = bundle/vim-markdown + url = https://github.com/tpope/vim-markdown +[submodule "bundle/vim-less"] + path = bundle/vim-less + url = https://github.com/lunaru/vim-less +[submodule "bundle/syntastic"] + path = bundle/syntastic + url = https://github.com/scrooloose/syntastic.git +[submodule "bundle/vim-javascript"] + path = bundle/vim-javascript + url = https://github.com/pangloss/vim-javascript diff --git a/after/ftplugin/php.vim b/after/ftplugin/php.vim new file mode 100644 index 0000000..d5a9f89 --- /dev/null +++ b/after/ftplugin/php.vim @@ -0,0 +1 @@ +set expandtab diff --git a/after/ftplugin/smarty.vim b/after/ftplugin/smarty.vim new file mode 100644 index 0000000..65093e8 --- /dev/null +++ b/after/ftplugin/smarty.vim @@ -0,0 +1 @@ +setlocal autoindent diff --git a/autoload/pathogen.vim b/autoload/pathogen.vim new file mode 120000 index 0000000..a47dcdf --- /dev/null +++ b/autoload/pathogen.vim @@ -0,0 +1 @@ +../pathogen/autoload/pathogen.vim \ No newline at end of file diff --git a/bundle/molokai b/bundle/molokai new file mode 160000 index 0000000..db8ce13 --- /dev/null +++ b/bundle/molokai @@ -0,0 +1 @@ +Subproject commit db8ce13b3737d3ddea8368498183d7c204a762eb diff --git a/bundle/syntastic b/bundle/syntastic new file mode 160000 index 0000000..b340672 --- /dev/null +++ b/bundle/syntastic @@ -0,0 +1 @@ +Subproject commit b340672bd03d877ede83f95ccec6a98bbd536d42 diff --git a/bundle/vim-javascript b/bundle/vim-javascript new file mode 160000 index 0000000..977e220 --- /dev/null +++ b/bundle/vim-javascript @@ -0,0 +1 @@ +Subproject commit 977e220b371938b81acb728eee36987c6fe4034a diff --git a/bundle/vim-less b/bundle/vim-less new file mode 160000 index 0000000..bd34eba --- /dev/null +++ b/bundle/vim-less @@ -0,0 +1 @@ +Subproject commit bd34eba9b8b34903db1df10ce3415964073b7011 diff --git a/bundle/vim-markdown b/bundle/vim-markdown new file mode 160000 index 0000000..409c37b --- /dev/null +++ b/bundle/vim-markdown @@ -0,0 +1 @@ +Subproject commit 409c37b205afa2f9d590e23de8171482d66770e2 diff --git a/pathogen b/pathogen new file mode 160000 index 0000000..b9fb0df --- /dev/null +++ b/pathogen @@ -0,0 +1 @@ +Subproject commit b9fb0dfd811004010f5f6903edef42d6004ebea2 diff --git a/vimrc b/vimrc new file mode 100644 index 0000000..1c00271 --- /dev/null +++ b/vimrc @@ -0,0 +1,21 @@ +execute pathogen#infect() + +filetype plugin indent on +filetype plugin on +syntax on +set ruler +set title +set number +set hlsearch +set incsearch +set ignorecase smartcase +set omnifunc=syntaxcomplete#Complete +set background=light + +set tabstop=4 softtabstop=4 shiftwidth=4 +set backspace=eol,indent,start + +colorscheme molokai + +map :update:make +imap :update:make