JDE配置

作者: garden | 来源:发表于2014-06-05 15:17 被阅读0次

    .emacs配置


    (setq jde-help-remote-file-exists-function '("beanshell"))
    (add-to-list 'load-path "~/site-lisp/elib-1.0")
    (add-to-list 'load-path "~/site-lisp/jdee-2.4.1/lisp")
    (require 'jde)
    (require 'font-lock)
    (autoload 'jde-mode "jde" "JDE mode." t)
    (add-to-list 'auto-mode-alist '("\.java\'" . jde-mode))

    (setq tab-width 4)
    (setq c-basic-offset 2)

    (custom-set-variables
    ;; custom-set-variables was added by Custom.
    ;; If you edit it by hand, you could mess it up, so be careful.
    ;; Your init file should contain only one such instance.
    ;; If there is more than one, they won't work right.
    '(browse-url-browser-function (quote browse-url-generic))
    '(browse-url-generic-program "chromium-browser")
    '(column-number-mode t)
    '(current-language-environment "Chinese-GB18030")
    '(custom-enabled-themes nil)
    '(display-time-mode t)
    '(ecb-source-path (quote ("D:/Software/workspace")))
    '(jde-compiler (quote ("javac server")))
    '(jde-complete-function (quote jde-complete-menu))
    '(jde-db-option-connect-socket (quote (nil "9009")))
    '(jde-debugger (quote ("jdb")))
    '(jde-global-classpath (quote ("C:/Program Files/Java/jdk1.8.0_05/lib/dt.jar" "C:/Program Files/Java/jdk1.8.0_05/lib/tools.jar")))
    '(jde-jdk-registry (quote (("1.8.0" . "C:/Program Files/Java/jdk1.8.0_05"))))
    '(jde-resolve-relative-paths-p t)
    '(jde-run-option-debug (quote ("Server" "Socket" "javadebug" nil "5005" t)))
    '(menu-bar-mode t)
    '(show-paren-mode t)
    '(tool-bar-mode nil)
    '(tooltip-mode nil))

    相关文章

      网友评论

          本文标题:JDE配置

          本文链接:https://www.haomeiwen.com/subject/omldtttx.html