mirror of
https://github.com/bertptrs/vimconfig.git
synced 2025-12-25 20:40:32 +01:00
Initial version.
Add several useful packages.
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
*.swp
|
||||
18
.gitmodules
vendored
Normal file
18
.gitmodules
vendored
Normal file
@@ -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
|
||||
1
after/ftplugin/php.vim
Normal file
1
after/ftplugin/php.vim
Normal file
@@ -0,0 +1 @@
|
||||
set expandtab
|
||||
1
after/ftplugin/smarty.vim
Normal file
1
after/ftplugin/smarty.vim
Normal file
@@ -0,0 +1 @@
|
||||
setlocal autoindent
|
||||
1
autoload/pathogen.vim
Symbolic link
1
autoload/pathogen.vim
Symbolic link
@@ -0,0 +1 @@
|
||||
../pathogen/autoload/pathogen.vim
|
||||
1
bundle/molokai
Submodule
1
bundle/molokai
Submodule
Submodule bundle/molokai added at db8ce13b37
1
bundle/syntastic
Submodule
1
bundle/syntastic
Submodule
Submodule bundle/syntastic added at b340672bd0
1
bundle/vim-javascript
Submodule
1
bundle/vim-javascript
Submodule
Submodule bundle/vim-javascript added at 977e220b37
1
bundle/vim-less
Submodule
1
bundle/vim-less
Submodule
Submodule bundle/vim-less added at bd34eba9b8
1
bundle/vim-markdown
Submodule
1
bundle/vim-markdown
Submodule
Submodule bundle/vim-markdown added at 409c37b205
1
pathogen
Submodule
1
pathogen
Submodule
Submodule pathogen added at b9fb0dfd81
21
vimrc
Normal file
21
vimrc
Normal file
@@ -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 <F5> :update<CR>:make<CR>
|
||||
imap <F5> <Esc>:update<CR>:make<CR>
|
||||
Reference in New Issue
Block a user