Welcome to Jekyll!

You’ll find this post in your _posts directory - edit this post and re-build (or run with the -w switch) to see your changes! To add new posts, simply add a file in the _posts directory that follows the convention: YYYY-MM-DD-name-of-post.ext.

Jekyll also offers powerful support for code snippets:

def print_hi(name)
  puts "Hi, #{name}"
end
print_hi('Tom')
#=> prints 'Hi, Tom' to STDOUT.

Check out the Jekyll docs for more info on how to get the most out of Jekyll. File all bugs/feature requests at Jekyll’s GitHub repo.

Installation de Solarized

Solarized est une palette de 16 couleurs étudiées pour êtres utilisées dans le terminal et les interfaces graphiques. C'est en pleine réunion, quand j'ai comparé mon un vim à fond sombre avec celui de mon voisin (utilisant Solarized), que mon écran s'est mis à me piquer les yeux.

J'ai donc décidé d'installer Solarized (avec l'aide de mon voisin).

Il y a deux étapes dans cette installation:

  1. Solarized pour le terminal que j'utilise: gnome-terminal
  2. Solariezd pour vim

Solarized pour gnome-terminal

Lancer un terminal et créer un nouveau profil en vous basant sur le profil actuel (menu Édition→Profils…, bouton Nouveau).

Récupérer et installer le thème Solarized dans ce profil, en se basant sur gnome-terminal-color-solarized:

$ git clone git://github.com/sigurdga/gnome-terminal-colors-solarized.git $ cd gnome-terminal-colors-solarized $ ./install.sh 

Solarized pour vim

vim-colors-solarized contient la palette Solarized pour vim. La méthode recommandée est d'utiliser Pathogen:

  1. Création de ~/.vim/bundle: $ mkdir -p $HOME/.vim/bundle/ && cd $HOME/.vim/bundle/
  2. Clonage de Pathogen: $ git clone https://github.com/tpope/vim-pathogen.git
  3. Clonage de vim-colors-solarized: $ git clone git://github.com/altercation/vim-colors-solarized.git
  4. Utilisation de Pathogen et vim-colors-solarized en ajoutant les lignes suivantes dans .vimrc:

##########MACRO#1#