Nico ๐ŸŒŠ's Avatar

Nico ๐ŸŒŠ

@nickgnd

Wanna be hacker. https://nickgnd.com

8
Followers
12
Following
5
Posts
08.11.2024
Joined
Posts Following

Latest posts by Nico ๐ŸŒŠ @nickgnd

My journey on building nvim:// URL handler for clickable stacktraces I was scrolling through the Phoenix documentation and stumbled upon one of its hidden gems: the PLUG_EDITOR environment variable. What? When configured, it allows you to open files directly from Plug....

Hey! I've built a custom @neovim.io URL handler to open a file by clicking on its filename in the stack trace printed by @elixir-lang.org Phoenix. Was quite a journey โœŒ๏ธ

nickgnd.com/posts/2025/0...

#elixirlang #phoenix #neovim

14.10.2025 21:13 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Andrej Karpathy: Software Is Changing (Again)
Andrej Karpathy: Software Is Changing (Again) YouTube video by Y Combinator

@antirez.bsky.social hai parlato spesso di @karpathy.bsky.social nei tuoi video. L'ultimo suo talk pubblicato un po' di ore fa merita a mio parere โœŒ๏ธ

www.youtube.com/watch?v=LCEm...

19.06.2025 20:59 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

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,
})
```

01.05.2025 07:38 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

That's a game changer! Thanks for all the work! โค๏ธ #elixirlang

23.04.2025 16:05 ๐Ÿ‘ 4 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Uh, thanks for reaching out! Glad that helped you ๐Ÿ˜‰

18.03.2025 22:34 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0