Nico 🌊
nickgnd.bsky.social
Nico 🌊
@nickgnd.bsky.social
Wanna be hacker.

https://nickgnd.com
Thanks! An alternative approach using neovim autocommands:

```
vim.api.nvim_create_autocmd({ 'BufNewFile', 'BufRead' }, {
pattern = '/private/**/tmp.*.erl',
callback = function()
vim.bo.filetype = 'elixir'
end,
})
```
May 1, 2025 at 7:38 AM
That's a game changer! Thanks for all the work! ❤️ #elixirlang
April 23, 2025 at 4:05 PM
Uh, thanks for reaching out! Glad that helped you 😉
March 18, 2025 at 10:34 PM