** cedet, jdee
Collection of Emacs Development Environment Tools, see [[http://cedet.sourceforge.net/setup.shtml][CEDET]]
-#+BEGIN_SRC emacs-lisp
-(load-file "~/elisp/cedet/common/cedet.el")
+#+BEGIN_SRC emacs-lisp-off tangle:no
+;(load-file "~/.emacs.d/elisp/cedet/common/cedet.el")
+(add-to-list 'load-path "~/.emacs.d/elisp/cedet/common/")
+(require 'cedet)
;(global-ede-mode 1) ; Enable the Project management system
+
+(require 'semantic-load)
+(require 'senator)
+(require 'semantic-sb)
+(require 'semantic-ia)
+(require 'semantic-wisent)
+;(require 'semantic/wisent/java-tags)
+
(semantic-load-enable-code-helpers) ; Enable prototype help and smart completion
(global-srecode-minor-mode 1) ; Enable template insertion menu
global-semantic-mru-bookmark-mode))
(setq semantic-load-turn-everything-on t)
;; ;(semantic-mode 1)
-(require 'semantic-load)
-(require 'senator)
-(require 'semantic-sb)
-(require 'semantic-ia)
-(require 'semantic-wisent)
-;(require 'semantic/wisent/java-tags)
(add-hook 'semantic-init-hooks 'senator-minor-mode)