Skip to content

Commit

Permalink
[Vim] added Vundle
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Ases García committed Nov 28, 2012
1 parent 33ad00a commit fd1036c
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "bash/powerline"]
path = bash/powerline
url = https://github.com/milkbikis/powerline-bash
[submodule "vim/bundle/vundle"]
path = vim/bundle/vundle
url = https://github.com/gmarik/vundle.git
1 change: 1 addition & 0 deletions vim/bundle/vundle
Submodule vundle added at 3bf598
28 changes: 21 additions & 7 deletions vimrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
set nocompatible " Disable vi-compatibility
set encoding=utf-8 " Necessary to show unicode glyphs
set laststatus=2 " Always show the statusline
set t_Co=256 " Explicitly tell vim that the terminal supports 256 colors
set nocompatible " be iMproved
set encoding=utf-8 " Necessary to show unicode glyphs
set laststatus=2 " Always show the statusline
set t_Co=256 " Explicitly tell vim that the terminal supports 256 colors
filetype off " required!

set rtp+=~/.vim/bundle/vundle/
call vundle#rc()

Bundle 'gmarik/vundle'

Bundle 'tpope/vim-fugitive'
Bundle 'Lokaltog/vim-powerline'
Bundle 'bronson/vim-trailing-whitespace'
Bundle 'tpope/vim-markdown'
Bundle 'beyondwords/vim-twig'
Bundle 'altercation/vim-colors-solarized'


filetype plugin indent on

syntax enable
set background=light
Expand All @@ -14,13 +30,11 @@ set tabstop=4
set shiftwidth=4
map <F2> :retab <CR> :wq! <CR>
set number " Show line numbers

set wildmenu " Better completion
set wildmode=list:longest " BASH style completion

" Forced write as su
cmap w!! w !sudo tee % >/dev/null
"Powerline
let g:Powerline_symbols = 'fancy'
let g:Powerline_symbols = 'fancy'

0 comments on commit fd1036c

Please sign in to comment.