;;; program-basic --- Some basic configuration ;;; Commentary: ;; None ;;; Code: (setq-default c-basic-offset 4 tab-width 4 indent-tabs-mode t) (defun execute-c-program () (interactive) (defvar foo) (setq foo (concat "gcc " (buffer-name) " -o " (buffer-name) ".out && ./" (buffer-name) ".out" )) (shell-command foo)) (provide 'init-program-basic) ;;; init-program-basic ends here