;; Add my custom lisp scripts dir
(add-to-list 'load-path "~/.emacs.d/lisp")
;; FCI - margines
(require 'fill-column-indicator)
;;(set-fill-column 80)

(defun my-c-init () (set-fill-column 80) (fci-mode) )

(add-hook 'c-mode-hook 'my-c-init )
;(add-hook 'c-mode-hook '(lambda () ((fci-mode 1) (set-fill-column 80))))



;;;;;;;;;; this goes to custom-set-variables ;;;;;;;;;; 
; fix indentation (nasty fix - works tho)
'(c-basic-offset 4)
 '(tab-stop-list
   (quote
    (4 8 12 16 20 24 28 32 36 40 44 48 52 56 60 64 68 72 76 80 84 88 92 96 100 104 108 112 116 120))))
