this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

wrap in trouble panels

+2 -1
+2 -1
nvim/lua/config/base.lua
··· 12 12 13 13 vim.opt.fillchars:append({ diff = "╱" }) 14 14 15 + -- Disable wrapping, except for buffers of certain filetype 15 16 vim.opt.wrap = false 16 17 vim.api.nvim_create_autocmd({ "FileType" }, { 17 - pattern = { "markdown", "gitlab", "avante", "" }, 18 + pattern = { "markdown", "gitlab", "avante", "trouble", "" }, 18 19 callback = function() 19 20 vim.opt_local.wrap = true 20 21 vim.opt_local.linebreak = true