Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
2.6 KiB

4 years ago
  1. ;;; ess-site.el --- user customization of ESS -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 1993 David M. Smith
  3. ;; Copyright (C) 1997--2010 A.J. Rossini, Richard M. Heiberger, Martin
  4. ;; Maechler, Kurt Hornik, Rodney Sparapani, and Stephen Eglen.
  5. ;; Copyright (C) 2011--2018 A.J. Rossini, Richard M. Heiberger, Martin
  6. ;; Maechler, Kurt Hornik, Rodney Sparapani, Stephen Eglen,
  7. ;; Vitalie Spinu, and Lionel Henry.
  8. ;; Author: David Smith <D.M.Smith@lancaster.ac.uk>
  9. ;; Created: 12 Nov 1993
  10. ;; Maintainer: ESS-core <ESS-core@r-project.org>
  11. ;; Keywords: local
  12. ;; This file is part of ESS
  13. ;; This file is free software; you can redistribute it and/or modify
  14. ;; it under the terms of the GNU General Public License as published by
  15. ;; the Free Software Foundation; either version 2, or (at your option)
  16. ;; any later version.
  17. ;; This file is distributed in the hope that it will be useful,
  18. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. ;; GNU General Public License for more details.
  21. ;; A copy of the GNU General Public License is available at
  22. ;; https://www.r-project.org/Licenses/
  23. ;;; Commentary:
  24. ;; Load path, autoloads, and major modes
  25. ;; ========================================
  26. ;;
  27. ;; This file defines all the site-specific customizations for ESS. It should be
  28. ;; edited on a per-site basis. users who wish to use ESS should add the path to
  29. ;; ess-site to their `load-path' and require it:
  30. ;;
  31. ;; (add-to-list 'load-path "/path/to/ess/lisp-directory");;
  32. ;; (require 'ess-site)
  33. ;;
  34. ;; For most users the variable ess-lisp-directory will automatically be set
  35. ;; correctly. If you are working with an old Emacs, one in which file-truename
  36. ;; is not defined, then you might need to change the value of ess-lisp-directory
  37. ;; to the directory which is to contain the file ess-site.elc. This is probably
  38. ;; the current directory, or the value of LISPDIR if it was set in the Makefile.
  39. ;;
  40. ;; Debug startup: (setq ess-show-load-messages t)
  41. ;;; Code:
  42. (when load-file-name
  43. ;; Modify this if ess-site.el is not in the ./lisp/ directory
  44. (defvar ess-lisp-directory (file-name-directory load-file-name)
  45. "Directory containing ess-site.el(c) and other ESS Lisp files.")
  46. (add-to-list 'load-path ess-lisp-directory))
  47. ;;; Loading popular dialects (they should become optional in the future)
  48. (require 'ess-r-mode)
  49. (require 'ess-julia)
  50. (require 'essd-els) ;; ess-remote
  51. (require 'ess-stata-mode)
  52. (require 'ess-sas-d)
  53. (require 'ess-bugs-d)
  54. (require 'ess-jags-d)
  55. (require 'ess-toolbar)
  56. (provide 'ess-site)
  57. ;;; ess-site.el ends here