This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Authors: Jamal Yousefi ([email protected]) | |
" Description: vim configuration | |
set nocompatible " Disable compatiblity with vi | |
set title " Update windows title | |
set number " Affiche le numero des lignes | |
set ruler " Affiche la position actuelle du curseur | |
set wrap " Affiche les lignes trop longues sur plusieurs lignes | |
set scrolloff=3 " Affiche un minimum de 3 lignes autour du curseur (pour le scroll) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source /usr/local/etc/bash_completion.d/git-prompt.sh | |
RED="\[\033[0;31m\]" | |
YELLOW="\[\033[0;33m\]" | |
GREEN="\[\033[0;32m\]" | |
BLUE="\[\033[0;34m\]" | |
LIGHT_RED="\[\033[1;31m\]" | |
LIGHT_GREEN="\[\033[1;32m\]" | |
WHITE="\[\033[1;37m\]" | |
LIGHT_GRAY="\[\033[0;37m\]" |