A great effort was spent to write Obliquid in a tidy and organized way, so try to keep things tidy by following this coding standards, and by using common sense.
(setq c-basic-indent 4)
(setq tab-width 4)
(setq indent-tabs-mode nil)
In vim write the following into your .vimrc:
set shiftwidth=4
set expandtab
set tabstop=4
:set ff=unix
:w
To convert from unix to dos file format use :set ff=dos instead.