Please bear with us as we work to restore functionality to dotfiles.org.
scriptencoding utf-8
" File: Vim configuration file
" Autor: Philippe Pepiot
"
"
" Actualise le title du terminal
set title
" Non compatible avec vi
set nocompatible
" Pas de beeps !
set errorbells
set novisualbell
set t_vb=
" Backspace
set backspace=indent,eol,start
" Activer le backup
set backup
set backupdir=/tmp
" Taille de l'historique
set history=100
" Taille des undo (annuler)
set undolevels=150
" Suffixes a cacher :
set suffixes+=.jpg,.png,.jpeg,.gif,.bak,~,.swp,.swo,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc,.pyc,.pyo
" Voir les ouvertures et fermetures de ( { etc...
set showmatch
set matchtime=2
" hilight search
set hlsearch
" search as I type
set incsearch
" ignore case when searching
set ignorecase
" override ignorecase if there are caps
set smartcase
" Afficher les commandes incompletes
set showcmd
" Affiche la position du curseur
set ruler
" Options de folding
set foldmethod=marker
" Si on est dans un terminal rapide
set ttyfast
" Permet de ne pas actualiser l'écran quand
" un sript vim fait une opperation
set lazyredraw
" Taille indentation
set shiftwidth=3
set autoindent
set smartindent
" Utiliser la souris
set mouse=a
" 3 lines visible around the cursor
set scrolloff=3
set sidescrolloff=5
set scrolljump=1
if has("autocmd")
" Filetype
if exists(":filetype")
filetype on
filetype plugin on
filetype indent on
endif
" Lire des pdf
au!
autocmd BufReadpre *.pdf set ro
autocmd BufReadPost *.pdf %!pdftotext -nopgbrk "%" - | fmt -csw78
" Put these in an autocmd group, so that we can delete them easily.
augroup vimrc
au!
" For all text files set 'textwidth' to 78 characters.
autocmd FileType text setlocal textwidth=78
" When editing a file, always jump to the last known cursor position.
" Don't do it when the position is invalid or when inside an event handler
" (happens when dropping a file on gvim).
autocmd BufReadPost *
\ if line("'\"") > 0 && line("'\"") <= line("$") |
\ exe "normal! g`\"" |
\ endif
augroup END
autocmd FileType c set omnifunc=ccomplete#Complete
autocmd FileType css set omnifunc=csscomplete#CompleteCSS
autocmd FileType html set omnifunc=htmlcomplete#CompleteTags
autocmd FileType php set omnifunc=phpcomplete#CompletePHP
autocmd FileType python set omnifunc=pythoncomplete#Complete
autocmd FileType ruby set omnifunc=rubycomplete#Complete
autocmd FileType sql set omnifunc=sqlcomplete#Complete
autocmd FileType xml set omnifunc=xmlcomplete#CompleteTags
endif
" Coloration syntaxique
if has("syntax")
syntax on
endif
set shell=/bin/zsh
if exists(":runtime")
runtime ftplugin/man.vim
if exists(":nnoremap")
nnoremap K :Man
endif
endif
if exists(":map")
" some usefull key mapping
map gg=G''
map :TlistToggle
map :TlistUpdate
map :DiffChangesDiffToggle
map :DiffChangesPatchToggle
map gt
map gT
endif
" paste/nopaste
set pastetoggle=
" force file encoding
set fileencodings=utf-8,latin1,default
" grep command
set grepprg=grep\ -nH\ $*
if exists(":command")
" open urls with firefox
command -bar -nargs=1 OpenURL :!firefox
endif