mirror of https://github.com/nirenjan/vimfiles.git
Add VimBundler script and bundles file
parent
31e5f9ab0b
commit
28c5343ac6
|
@ -0,0 +1,24 @@
|
||||||
|
# List of Vim bundles
|
||||||
|
# Pathogen v2.2
|
||||||
|
tpope/vim-pathogen v2.2
|
||||||
|
|
||||||
|
# A Git wrapper so awesome, it should be illegal
|
||||||
|
tpope/vim-fugitive
|
||||||
|
|
||||||
|
# tmux config file syntax
|
||||||
|
zaiste/tmux.vim
|
||||||
|
|
||||||
|
# Solarized
|
||||||
|
altercation/vim-colors-solarized
|
||||||
|
|
||||||
|
# Vimwiki
|
||||||
|
vimwiki 2.1
|
||||||
|
|
||||||
|
# snipMate
|
||||||
|
msanders/snipmate.vim
|
||||||
|
|
||||||
|
# tComment
|
||||||
|
tomtom/tcomment_vim 2.08
|
||||||
|
|
||||||
|
# Airline
|
||||||
|
bling/vim-airline v0.3
|
18
vimrc
18
vimrc
|
@ -43,18 +43,12 @@ set laststatus=2
|
||||||
" Show tab line
|
" Show tab line
|
||||||
set showtabline=2
|
set showtabline=2
|
||||||
|
|
||||||
" Set status to show all details
|
" Statusline is handled by the airline plugin. Just set the ttm accordingly
|
||||||
set statusline=%F " Full path to filename
|
set ttm=50
|
||||||
set statusline+=%m " Modified flag
|
let g:airline_theme='solarized'
|
||||||
set statusline+=%h " Help buffer flag
|
let g:airline_left_sep=''
|
||||||
set statusline+=%w " Preview window flag
|
let g:airline_right_sep=''
|
||||||
set statusline+=\ %y " File type
|
"let g:airline_section_z='[%03.3b/0x%02.2B] %3.3p%% : %l/%L : %v '
|
||||||
set statusline+=%= " Switch to right align
|
|
||||||
set statusline+=[%03.3b " ASCII value for character under cursor
|
|
||||||
set statusline+=/0x%02.2B] " Same, but in hex
|
|
||||||
set statusline+=\ [%v " Virtual column number
|
|
||||||
set statusline+=,%l/%L] " Current line number, total lines
|
|
||||||
set statusline+=\ [%p%%] " Percentage through file
|
|
||||||
|
|
||||||
" Set the cursorline option
|
" Set the cursorline option
|
||||||
" This (by default shows up as underlining)
|
" This (by default shows up as underlining)
|
||||||
|
|
Loading…
Reference in New Issue