added powerline and vimerl + some vimrc changes
This commit is contained in:
9
.gitmodules
vendored
9
.gitmodules
vendored
@@ -7,3 +7,12 @@
|
|||||||
[submodule "bundle/snipmate"]
|
[submodule "bundle/snipmate"]
|
||||||
path = bundle/snipmate
|
path = bundle/snipmate
|
||||||
url = git://github.com/msanders/snipmate.vim.git
|
url = git://github.com/msanders/snipmate.vim.git
|
||||||
|
[submodule "bundle/ctrlp.vim"]
|
||||||
|
path = bundle/ctrlp.vim
|
||||||
|
url = https://github.com/kien/ctrlp.vim.git
|
||||||
|
[submodule "bundle/powerline.vim"]
|
||||||
|
path = bundle/powerline.vim
|
||||||
|
url = git://github.com/Lokaltog/vim-powerline.git
|
||||||
|
[submodule "bundle/vimerl"]
|
||||||
|
path = bundle/vimerl
|
||||||
|
url = git://github.com/jimenezrick/vimerl.git
|
||||||
|
|||||||
1
bundle/ctrlp.vim
Submodule
1
bundle/ctrlp.vim
Submodule
Submodule bundle/ctrlp.vim added at e61e7d5b80
1
bundle/powerline.vim
Submodule
1
bundle/powerline.vim
Submodule
Submodule bundle/powerline.vim added at 7f53b5c391
1
bundle/vimerl
Submodule
1
bundle/vimerl
Submodule
Submodule bundle/vimerl added at e36e0e8d69
6
vimrc
6
vimrc
@@ -1,10 +1,12 @@
|
|||||||
call pathogen#infect()
|
call pathogen#infect()
|
||||||
syntax on
|
syntax on
|
||||||
set laststatus=2
|
set laststatus=2
|
||||||
set statusline=%t\ %y\ format:\ %{&ff};\ [%c,%l]\ %{fugitive#statusline()}
|
"set statusline=%t\ %y\ format:\ %{&ff};\ [%c,%l]\ %{fugitive#statusline()}
|
||||||
set number
|
set number
|
||||||
set autoindent
|
set autoindent
|
||||||
set hidden
|
set hidden
|
||||||
|
set encoding=utf-8
|
||||||
|
"set t_Co=256
|
||||||
colorscheme default
|
colorscheme default
|
||||||
if has("autocmd")
|
if has("autocmd")
|
||||||
autocmd bufwritepost .vimrc source $MYVIMRC
|
autocmd bufwritepost .vimrc source $MYVIMRC
|
||||||
@@ -36,4 +38,6 @@ if has("autocmd")
|
|||||||
au InsertLeave * let &updatetime=updaterestore
|
au InsertLeave * let &updatetime=updaterestore
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
let g:Powerline_symbols = 'fancy'
|
||||||
|
|
||||||
set autoread "automatically reload files
|
set autoread "automatically reload files
|
||||||
|
|||||||
Reference in New Issue
Block a user