diff options
author | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-12-22 13:44:31 -0600 |
---|---|---|
committer | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-12-22 13:44:31 -0600 |
commit | b67b0a8e9f2b628a4adeea8a38e65b89c3957f92 (patch) | |
tree | 1f5d68272809658de50462375fd3dd35f9edae8a /common | |
parent | bb32c6656e18982f882e2ca27904f28183a0bed6 (diff) |
system changes
Diffstat (limited to 'common')
-rw-r--r-- | common/.config/emacs/init.el.org | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org index afaf6a9..fd9120e 100644 --- a/common/.config/emacs/init.el.org +++ b/common/.config/emacs/init.el.org @@ -437,8 +437,8 @@ Run the early setup right away. #+begin_src emacs-lisp (defun jj/setup-c () "configure C source" - (dolist (extension '("\\.l$" "\\.y$")) - (add-to-list 'auto-mode-alist '(extension . prog-mode)))) + ;;(dolist (extension '("\\.l$" "\\.y$")) + ;; (add-to-list 'auto-mode-alist '(extension . prog-mode)))) #+end_src =jj/setup-go= installs =go-mode= and tools for =go= source code. Namely, =go-eldoc= gets documentation for =go= variables, functions, and arguments, =go-gen-tests= automatically generates tests for =go= code, and =go-guru= helps with refactoring =go= code. |