ggarciajr
I’m trying to configure doom emacs to work with elixir, but the rendering in heex files and ~H sigils are off. For example, tag attributes and anything inside {} are rendered with the same color.
This happens with the catppuccin and tokyo night themes. With the default doom emacs theme, the tag attributes are rendered with a different color, but anything inside {} are treated as the same thing and they get rendered with the same color.
Do you have to do anything other than adding (elixir +lsp +tree-sitter) and (web +tree-sitter) to the init.el file?
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 8- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
franciscoj
I’ve been checking my own config and the only other thing I can think of is to also uncomment
tree-sittermodule, apart from remembering todoom syncafter making the changes.ggarciajr
@franciscoj what version of emacs are you using?
franciscoj
I’m using
30.2, which is the one that comes with Arch Linux Arch Linux - emacs 30.2-3 (x86_64)katafrakt
There was a discussion about it recently in Discord and the conclusion was that it’s rather hard and maybe possible using polymode with some custom glue code. However, I find this slightly suspicious, as it does work in Zed and they both use tree sitter for it.
Personally, I never got it to work and stopped caring.
katafrakt
Update: I’m glad I wrote I gave up, because I think I got it to work now with this in
config.el:franciscoj
@katafrakt
I think that I got the original message from @ggarciajr wrong, I had indeed the same issue as him, however with your suggestion for
config.elI made it work.Thanks!
ggarciajr
It seems emacs 30.2 tree-sitter support is limited. maybe that will improve on the 31x.
And yes, glue-code was the only way I found to make tree-sitter work properly on heex templates or in ~H sigils.
I’ll wait until the next version. I’m still evaluating if I want to move to emacs
katafrakt
I’m on 30.2 myself. But I think I don’t use built-in tree sitter grammars, but at some point updated them. Perhaps by running
M-x treesit-install-language-grammarfor both Elixir and HEEx, although TBH I’m not sure.