There may be some other things you'll want to put there. set ai for instance is a handy thing.set ts=4 set expandtab
*Note: The expandtab option is only known to be valid for the vim version of vi. If you're using some other version, you really should switch anyway because vim generally seems to be much better than the others.
(defun set-ifleet-tabs-hook ()
(setq tab-width 4
indent-tabs-mode nil)
)
(add-hook 'c-mode-common-hook 'set-ifleet-tabs-hook)