From e632e7326be58e5444131aff24cb3f114060b39a Mon Sep 17 00:00:00 2001 From: lixulun Date: Tue, 1 Sep 2026 14:12:53 +0800 Subject: [PATCH] odin-mode --- init.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init.el b/init.el index fbd74bf..4063dce 100644 --- a/init.el +++ b/init.el @@ -119,3 +119,9 @@ (require 'simpc-mode) (add-to-list 'auto-mode-alist '("\\.[hc]\\(pp\\)?\\'" . simpc-mode)) ;; --- end of simplec-mode ------ + +;; ------- odin-mode ------------ +(add-to-list 'load-path (expand-file-name "vendor/odin-mode" user-emacs-directory)) +(require 'odin-mode) +(add-to-list 'auto-mode-alist '("\\.odin\\'" . odin-mode)) +;; --- end of odin-mode ---------