Skip to content
Snippets Groups Projects
Commit b3ae3bb3 authored by Maxime Veber's avatar Maxime Veber
Browse files

New powerline

parent e386c2c9
Branches master
No related tags found
No related merge requests found
...@@ -13,18 +13,29 @@ Plugin 'gmarik/Vundle.vim' ...@@ -13,18 +13,29 @@ Plugin 'gmarik/Vundle.vim'
Plugin 'sjbach/lusty.git' Plugin 'sjbach/lusty.git'
Plugin 'kien/ctrlp.vim.git' Plugin 'kien/ctrlp.vim.git'
Plugin 'arnaud-lb/vim-php-namespace.git' Plugin 'arnaud-lb/vim-php-namespace.git'
Plugin 'Lokaltog/vim-powerline.git'
" The first line is powerline. If you remove this, don't forget to edit zsh
" config
Plugin 'powerline/powerline.git' , {'rtp': 'powerline/bindings/vim/'}
Plugin 'tpope/vim-fugitive.git' Plugin 'tpope/vim-fugitive.git'
Plugin 'airblade/vim-gitgutter' Plugin 'airblade/vim-gitgutter'
" Here should be other plugins " Here should be other plugins
" Bundle 'joonty/vim-phpqa.git' " Bundle 'joonty/vim-phpqa.git'
"
" Markdown for vim
Plugin 'godlygeek/tabular'
Plugin 'plasticboy/vim-markdown'
Bundle 'danro/rename.vim' Bundle 'danro/rename.vim'
Bundle 'tobyS/vmustache' Bundle 'tobyS/vmustache'
Bundle 'SirVer/ultisnips' Bundle 'SirVer/ultisnips'
Bundle 'tobyS/pdv' Bundle 'tobyS/pdv'
" nerdtree
Plugin 'scrooloose/nerdtree'
" All of your Plugins must be added before the following line " All of your Plugins must be added before the following line
call vundle#end() " required call vundle#end() " required
...@@ -56,7 +67,7 @@ set number ...@@ -56,7 +67,7 @@ set number
set tabstop=4 set tabstop=4
set expandtab set expandtab
set smartindent set smartindent
"set autoindent set autoindent
set shiftwidth=4 set shiftwidth=4
set directory=/tmp/ set directory=/tmp/
...@@ -124,8 +135,13 @@ nmap <C-k> 4k ...@@ -124,8 +135,13 @@ nmap <C-k> 4k
" Clear search highlight " Clear search highlight
nmap <silent> <leader>/ :let @/=""<cr> nmap <silent> <leader>/ :let @/=""<cr>
" Powerline protip " (old) Powerline protip
let g:Powerline_symbols = 'fancy' " let g:Powerline_symbols = 'fancy'
"
" New powerline
" set rtp+=/home/maxime/.vim/bundle/powerline/powerline/bindings/vim
set ls=2 " Always show status bar set ls=2 " Always show status bar
...@@ -152,3 +168,6 @@ nmap <S-j> <C-y><CR> ...@@ -152,3 +168,6 @@ nmap <S-j> <C-y><CR>
" let g:gitgutter_avoid_cmd_prompt_on_windows = 0 " let g:gitgutter_avoid_cmd_prompt_on_windows = 0
let g:gitgutter_sign_column_always = 1 let g:gitgutter_sign_column_always = 1
let g:gitgutter_realtime = 1 let g:gitgutter_realtime = 1
" Vim markdown
let g:vim_markdown_folding_disabled = 1 " To avoid folding - which is disturbing (sort by 1 level title)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment