Pusteblume

安装Maude
设置环境变量:
.bash_profile文件里加入下面一句话:

export MAUDE_LIB=/home/yourname/maude

下载maude-mode.el文件,并拷贝到/home/yourname/.emacs.d文件夹下
配置init.el文件,在init.el 文件里加入以下代码:
init.el的路径: /home/yourname/.emacs.d/
(autoload 'maude-mode "maude-mode" "Maude-programming" t)
(setq auto-mode-alist (cons '("\\.maude$" . maude-mode)
auto-mode-alist))

相关文章:

  • 2021-09-29
  • 2021-12-10
  • 2022-03-10
  • 2022-01-03
  • 2022-12-23
猜你喜欢
  • 2021-11-14
  • 2021-06-09
  • 2022-02-07
  • 2021-10-14
  • 2021-06-01
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案