Sebastian Pablo Fell

Results 24 comments of Sebastian Pablo Fell

`»` is just a character to denote there is a tab, but it's not part of the code. You can change that symbol if you don't like it changing [this...

From the issue I infer they wanted a tab, as that's what's being pressed.

This is from LazyVim: https://github.com/LazyVim/LazyVim/discussions/242#discussioncomment-4947842 But basically you can add ```lua if client.name == "tsserver" then client.server_capabilities.documentFormattingProvider = false end ``` to the LspAttach autocomd, inside the nvim-lspconfig config and...

Sorry, but in which step and how did you install typescript-language-server?

From their [github](https://github.com/Feel-ix-343/markdown-oxide?tab=readme-ov-file#installation): > I'm working on getting this into package distributions. Installation/configuration should be easier soon. Looks like you have to manually install it like it's exaplained there.

What do you mean? As in organizing plugins in different files? There are instructions and an example at the end of the init.lua file.

You are right, it doesn't set a filetype as it's executed on filetype event so no needed (`filetypes = { 'java' },` on lazy). I have to go now, but...

What I did was add the filetype manually. I think you can do that in the plugin setup like this ```lua require("roslyn").setup({ config = { filetypes = { 'cs' },...

Meanwhile, I can personally recommend [flatpickr](https://github.com/flatpickr/flatpickr) as a lightweight, very complete and nice looking Date/Time Picker. There are many examples in the website and can be easily stylized with some...

Skeleton tries to use native elements when possible, but in this case the date inputs available are not easy to style. As for your suggestion, I can only see the...