;; .emacs (if window-system (menu-bar-mode 1) (menu-bar-mode -1)) (setq next-line-add-newlines nil) ;;; uncomment this line to disable loading of "default.el" at startup ;; (setq inhibit-default-init t) ;; turn on font-lock mode (when (fboundp 'global-font-lock-mode) (global-font-lock-mode t)) ;; enable visual feedback on selections ;(setq transient-mark-mode t) ;; default to better frame titles (setq frame-title-format (concat "%b - emacs@" system-name)) ;; default to unified diffs (setq diff-switches "-u") (global-font-lock-mode t) ;; cscope (cross referencer) (require 'xcscope) (global-set-key "\M-g" 'goto-line) (global-set-key "\M-c" 'compile)