Mike Wyatt
Mike Wyatt
> Running Neovim on the remote takes CPU, RAM and disk space. This can be a complete dealbreaker for some of the more resource-intensive plugins, like rust-analyzer. This is exactly...
Doesn't necessarily have to be two repositories, monorepos exist (but are not without complications, admittedly). Also, you only mentioned jscodeshift when I'm guessing these are only to do with the...
I'm able to get ale/macvim to show balloons for lint errors, but not for type information. ale-lsp is working, as it's giving the correct info with `:ALEHover`. Seems like that...
It's annoying not being able to narrow, and I haven't invest much time but feel like there is a better way to allow generic / custom tokens (maybe it's on...
We worked around this by using a custom loader. Maybe there's an easier way, because the fix seems to just be what options are passed to `getIntrospectionQuery` ```js const fetch...
@AaronMoat That's a great tip! I figured it must be possible without any custom code.
Another +1, vike shouldn't dictate what a path alias starts with.
Some explanation of _why_ they're needed would be great as well. At work we need to use `svgoOptions` to make sure the viewBox is set, and it's really not clear...
Of course, after posting this I noticed this, which probably answers my question: https://github.com/JonasKruckenberg/tauri-plugin-graphql/blob/78b092deda2e8621a2291c480372d7b3e814b735/src/lib.rs#L246 Now I'm wondering why `.inner` is needed in subscriptions https://github.com/JonasKruckenberg/tauri-plugin-graphql/blob/78b092deda2e8621a2291c480372d7b3e814b735/src/lib.rs#L258
I'm not sure if this will help anyone in this thread, but this is what I'm doing to handle duplicate NERDTree / netrw windows on startup: ``` vim let g:nerdtree_tabs_open_on_gui_startup...