Enable lua-mode, ensure lua for eglot, enable org-babel lua execution
This commit is contained in:
parent
66fc455929
commit
3e30503856
|
@ -64,6 +64,7 @@ Set treesit to fontify all elements, default was 3 (out of 4)
|
|||
("C-c c a" . eglot-code-actions)
|
||||
("C-c c r" . eglot-rename))
|
||||
:hook (((nix-mode
|
||||
lua-mode
|
||||
python-base-mode
|
||||
rust-ts-mode
|
||||
fortran-mode
|
||||
|
@ -246,6 +247,12 @@ Set treesit to fontify all elements, default was 3 (out of 4)
|
|||
:mode "\\.nu\\'")
|
||||
#+end_src
|
||||
|
||||
** Lua
|
||||
#+begin_src emacs-lisp
|
||||
(use-package lua-mode
|
||||
:ensure t)
|
||||
#+end_src
|
||||
|
||||
** Python
|
||||
Set fill column to 88 and enable display in python buffers
|
||||
#+begin_src emacs-lisp :tangle yes
|
||||
|
|
|
@ -37,6 +37,7 @@ For reference information, see [[https://orgmode.com][Org-mode website]]
|
|||
:ensure t
|
||||
:custom
|
||||
(org-babel-load-languages '((emacs-lisp . t)
|
||||
(lua . t)
|
||||
(python . t)))
|
||||
:config
|
||||
(set-face-attribute 'org-table nil :inherit 'fixed-pitch)
|
||||
|
|
Loading…
Reference in a new issue