Results 8 comments of one

Hey! I really like this framework so far! But I faced a very strange situation. All tests passed on my machine, but on GitHub one test fails. I have no...

Hi! Are there any plans to implement theme selection with `vim.opt.background = "light"/"dark`?

This is my settings for the server. ```lua local runtime_path = vim.split(package.path, ";") table.insert(runtime_path, "lua/?.lua") table.insert(runtime_path, "lua/?/init.lua") nvim_lsp.lua_ls.setup({ on_attach = map.set_lsp_map, capabilities = capabilities, flags = flags, settings = {...

I did some hacking and removed the symlink from the runtime path. It works but it is still a hack. ```lua local runtime_path = vim.split(package.path, ";") local runtime_file = vim.api.nvim_get_runtime_file("",...

Hi! The lsp is dartls. ```lua { client_id = 1, cursor_column = 3, documentation = { kind = "markdown", value = "Insert a Flutter StatelessWidget." }, editRange = { ["end"]...

Sure, no worries ```lua { additionalTextEdits = { { insertTextFormat = 2, newText = 'import "package:flutter/widgets.dart";\n\n', range = { ["end"] = { character = 0, line = 0 }, start...

Or maybe add another option `order_bbuffers = "fullpath"`.

```lua keymap = { [""] = { "show_signature", "hide_signature", "fallback" }, }, signature = { enabled = true, trigger = { -- enabled = false, -- if I uncomment this,...