Skip to content

Commit

Permalink
Fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
lermit committed Oct 17, 2014
2 parents 3feef7c + c01010e commit 26c8bf8
Show file tree
Hide file tree
Showing 19 changed files with 67 additions and 1,144 deletions.
36 changes: 21 additions & 15 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,24 @@
[submodule "bundle/surround"]
path = bundle/surround
url = https://github.com/vim-scripts/surround.vim.git
[submodule "bundle/ShowFunc"]
path = bundle/ShowFunc
url = https://github.com/vim-scripts/ShowFunc.vim.git
[submodule "bundle/zencoding"]
path = bundle/zencoding
url = https://github.com/mattn/zencoding-vim.git
[submodule "bundle/XDebug-DBGp-client-for-PHP"]
path = bundle/XDebug-DBGp-client-for-PHP
url = https://github.com/vim-scripts/XDebug-DBGp-client-for-PHP.git
[submodule "bundle/vim-javascript"]
path = bundle/vim-javascript
url = https://github.com/pangloss/vim-javascript.git
[submodule "bundle/vim-javascript-syntax"]
path = bundle/vim-javascript-syntax
url = https://github.com/jelera/vim-javascript-syntax.git
[submodule "bundle/emmet-vim"]
path = bundle/emmet-vim
url = http://github.com/mattn/emmet-vim.git
[submodule "bundle/puppet-vim"]
path = bundle/puppet-vim
url = https://github.com/ajf/puppet-vim.git
[submodule "bundle/tlib_vim"]
path = bundle/tlib_vim
url = https://github.com/tomtom/tlib_vim.git
[submodule "bundle/vim-addon-mw-utils"]
path = bundle/vim-addon-mw-utils
url = https://github.com/MarcWeber/vim-addon-mw-utils.git
[submodule "bundle/vim-sensible"]
path = bundle/vim-sensible
url = https://github.com/tpope/vim-sensible.git
[submodule "bundle/vim-snipmate"]
path = bundle/vim-snipmate
url = https://github.com/garbas/vim-snipmate.git
[submodule "bundle/vim-lint"]
path = bundle/vim-lint
url = https://github.com/dbakker/vim-lint.git
1 change: 1 addition & 0 deletions bundle/.vundle/script-names.vim-scripts.org.json

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion bundle/ShowFunc
Submodule ShowFunc deleted from 2e5150
1 change: 1 addition & 0 deletions bundle/Vundle.vim
Submodule Vundle.vim added at 8db3bc
1 change: 0 additions & 1 deletion bundle/XDebug-DBGp-client-for-PHP
Submodule XDebug-DBGp-client-for-PHP deleted from 2a721e
1 change: 1 addition & 0 deletions bundle/emmet-vim
Submodule emmet-vim added at 6016cf
1 change: 1 addition & 0 deletions bundle/puppet-vim
Submodule puppet-vim added at eccd0e
2 changes: 1 addition & 1 deletion bundle/syntastic
1 change: 1 addition & 0 deletions bundle/tlib_vim
Submodule tlib_vim added at c9b900
1 change: 1 addition & 0 deletions bundle/vim-addon-mw-utils
Submodule vim-addon-mw-utils added at 0c5612
1 change: 1 addition & 0 deletions bundle/vim-airline
Submodule vim-airline added at 3ab1bb
1 change: 1 addition & 0 deletions bundle/vim-lint
Submodule vim-lint added at 59833d
1 change: 1 addition & 0 deletions bundle/vim-sensible
Submodule vim-sensible added at 01854b
1 change: 1 addition & 0 deletions bundle/vim-snipmate
Submodule vim-snipmate added at 3883b1
1 change: 0 additions & 1 deletion bundle/zencoding
Submodule zencoding deleted from ad19b7
1,093 changes: 0 additions & 1,093 deletions plugin/debugger.py

This file was deleted.

31 changes: 0 additions & 31 deletions plugin/debugger.vim

This file was deleted.

Binary file modified spell/fr.utf-8.spl
Binary file not shown.
36 changes: 35 additions & 1 deletion vimrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
" Remove ALL autocommands for the current group
:autocmd!


" Enable pathogen
call pathogen#runtime_append_all_bundles()
execute pathogen#infect()
"call pathogen#runtime_append_all_bundles()

runtime macros/matchit.vim

set encoding=utf-8 " Encodage par defaut
set nocompatible " Pas de compatibilité vi
Expand Down Expand Up @@ -48,6 +52,28 @@ colorscheme default
syntax on " Coloration syntaxique


" Status line
set statusline=%t "tail of the filename
set statusline+=[%{strlen(&fenc)?&fenc:'none'}, "file encoding
set statusline+=%{&ff}] "file format
set statusline+=%h "help file flag
set statusline+=%m "modified flag
set statusline+=%r "read only flag
set statusline+=%y "filetype
set statusline+=%= "left/right separator
set statusline+=%c, "cursor column
set statusline+=%l/%L "cursor line/total lines
set statusline+=\ %P "percent through file
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*

" syntastic
let g:syntastic_enable_signs=1
"let g:syntastic_quiet_messages = {'level': 'warnings'}
let g:syntastic_auto_loc_list=1


" Lier le plugin closetag au fichier html, xml, xsl et php
au Filetype html,xml,xsl,php source ~/.vim/plugin/closetag.vim
"filetype on
Expand All @@ -67,6 +93,7 @@ autocmd BufRead * silent! %s/[\r \t]\+$//

filetype on
filetype plugin on
filetype plugin indent on

" Activation de la correction grammaticale
let g:languagetool_jar=$HOME .'/software/languagetool/1.5/LanguageTool.jar'
Expand All @@ -76,3 +103,10 @@ set nospell

" Save a file you edited in vim without the needed permissions
command W :execute ':silent w !sudo tee % > /dev/null' | :edit!

" Vundle
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

Plugin 'gmarik/Vundle.vim'

0 comments on commit 26c8bf8

Please sign in to comment.