;;=======================================================================================================================
;;
;; global settings
;;
;;=======================================================================================================================
;; inhibit start up message
(setq inhibit-startup-message t)
;; semantics hight
(global-font-lock-mode t)
;; show parentheses match
(show-paren-mode t)
(setq show-paren-style 'parentheses)
;; column number
(column-number-mode t)
;; cedet
(require 'cedet)
(global-set-key [(f4)] 'speedbar-get-focus)
;; (define-key c-mode-base-map [(meta ?/)] 'sematic-ia-complete-symbol-menu)
;; ecb
;; (require 'ecb)
;;=======================================================================================================================
;;
;; c mode:
;; k&r style
;; cscope
;;
;;=======================================================================================================================
;; k&r style
(setq c-default-style '((c-mode . "k&r")))
;; cscope
(require 'xcscope)
;; show file path
(setq frame-title-format
'("%S" (buffer-file-name "%f"
(dired-directory dired-dirctory "%b"))))
;;=======================================================================================================================
;;
;; python mode
;;
;;=======================================================================================================================