Results 40 comments of kaiuri

@itayperry I guess taking advantage of `rust`'s awesome features like monomorphization, `std`, `core`, generics, traits, etc, is the way to go.

> @kaiuri I just started learning :) so it would take a while. In short, regarding the issue at hand, I'm absolutely up for adding canonical solutions for all the...

@esn89, Stylua, as it's set up in `null-ls` _i.e._ ```lua generator_opts = { command = "stylua", args = h.range_formatting_args_factory({ "--search-parent-directories", "--stdin-filepath", "$FILENAME", "-", }, "--range-start", "--range-end", { row_offset = -1,...

@jose-elias-alvarez hmm... Maybe it could be Windows related then?

@jukefr, I've created an `autocommand` for formatting files with Deno on my `init.lua` a while ago, it might be of help to you: ```lua command('DenoFormat', function() local ft = vim.o.filetype...

@chr0n1x [Packer](https://github.com/wbthomason/packer.nvim) plugin manager can help easy that pain. Simply add, there, to your plugin's loading config on the key `config` like this: ```lua use { 'ms-jpq/coq_nvim', branch = 'coq',...

@lucypero My mistake, actually, setting `coq_settings.match.unifying_chars` to include `"."` might solve it

@lucypero sure ```lua lspconfig.tsserver.setup { on_attach = on_attach } g.coq_settings = { auto_start = 'shut-up', clients = { tree_sitter = { enabled = false }, paths = { preview_lines =...

do you have any autopair plugin installed?