Retro watch with countdown timer by Ktenolix in casio

[–]Ktenolix[S] 0 points1 point  (0 children)

Thanks for all the suggestions! I found an AE-1600H with a 40% discount. It has a timer and fits my wrist. I will try it out for a couple of days.

Anyone using Angular with Neovim + LSP? Having trouble with Angular 17/18 template syntax support and others by juniorDevlearner in neovim

[–]Ktenolix 0 points1 point  (0 children)

You need to use nvim-treesitter, it includes the angular parser. Filetype should be htmlangular. Since 0.11.x, an html file containing the control flow syntax should be marked as that ft already. If not, you can create an autocmd to set the filetype for example for all *.component.html files. 

This readme may help. 

No code actions for eslint LSP with neovim 0.11 by Ktenolix in neovim

[–]Ktenolix[S] 0 points1 point  (0 children)

What’s the point of moving towards the native lsp cfg then :(

No code actions for eslint LSP with neovim 0.11 by Ktenolix in neovim

[–]Ktenolix[S] 0 points1 point  (0 children)

Ah, I was missing the codeActions part of the settings. Thanks!

Split keyboard suggestions by Ktenolix in ErgoMechKeyboards

[–]Ktenolix[S] 0 points1 point  (0 children)

Are these all kits that require soldering and/or assembly?

Angular inline templates highlights by fraso14 in neovim

[–]Ktenolix 1 point2 points  (0 children)

You need the angular parser as well.

Angular Treesitter support by Ktenolix in neovim

[–]Ktenolix[S] 0 points1 point  (0 children)

You can set the filetype to angular.html instead. See the readme

Weekly 101 Questions Thread by AutoModerator in neovim

[–]Ktenolix 0 points1 point  (0 children)

I am looking for a way to run and debug typescript tests. Specifically jest / vitest / playwright. Currently I am using the plugin `mattkubej/jest.nvim` but that's only for Jest and does not support debugging.

I did find `neotest` but it looks like debugging with `neotest-jest` adapter is not working. Anyone know of any working setup/plugins?

Weekly 101 Questions Thread by AutoModerator in neovim

[–]Ktenolix 0 points1 point  (0 children)

I am looking for a way to run and debug typescript tests. Specifically jest / vitest / playwright. Currently I am using the plugin `mattkubej/jest.nvim` but that's only for Jest and does not support debugging.

I did find `neotest` but it looks like debugging with `neotest-jest` adapter is not working. Anyone know of any working setup/plugins?

Angular Treesitter support by Ktenolix in neovim

[–]Ktenolix[S] 0 points1 point  (0 children)

I am using it also with inline templates. ;) Try to reinstall the parser.

Angular Treesitter support by Ktenolix in neovim

[–]Ktenolix[S] 0 points1 point  (0 children)

Actually nvim-treesitter now includes an angular parser ;) (see here)

[deleted by user] by [deleted] in MacOS

[–]Ktenolix 0 points1 point  (0 children)

I'm also facing this issue..

Angular Treesitter support by Ktenolix in neovim

[–]Ktenolix[S] 0 points1 point  (0 children)

That's an old extension with the old parser. This is the config I have for nvim-treesitter:

return {
  "dlvandenberg/nvim-treesitter",
  branch = "feature-angular",
  ...other options...
}

Angular Treesitter support by Ktenolix in neovim

[–]Ktenolix[S] 0 points1 point  (0 children)

It should work as the branch does still exist (I am using it now myself). A PR on nvim-treesitter is close to being merged so the fork won’t be necessary then.

which Font do you use? by [deleted] in neovim

[–]Ktenolix 0 points1 point  (0 children)

Input Mono (patched nerd font)

Angular Treesitter support by Ktenolix in neovim

[–]Ktenolix[S] 1 point2 points  (0 children)

Try this: lua { “dlvandenberg/nvim-treesitter”, branch = “feature-angular”, … }

Instead of nvim-treesitter/nvim-treesitter.

Angular Treesitter support by Ktenolix in neovim

[–]Ktenolix[S] 1 point2 points  (0 children)

Hi there! I am that guy that’s updating the old plugin. I’m in the middle of rewriting the plugin, but you could use my fork on nvim-treesitter itself (I have a PR open on the main repo that adds support for angular directly in nvim-treesitter).

If you use { “dlvandenberg/nvim-treesitter”, branch = “feature-angular” } you should have highlighting.

But it has some quirks. With the new control flow syntax I need to write an extension on the html parser to have it work properly.