Yauhen Karatkou

Results 2 comments of Yauhen Karatkou

@fdschmidt93 @mrbeardad I fixed this problem in a slightly different way for myself could you take a look, does it make sense.. https://github.com/fdschmidt93/telescope-egrepify.nvim/pull/48

You can use this workaround in your neovim configuration: ```lua vim.api.nvim_create_autocmd("LspAttach", { callback = function(args) local client = vim.lsp.get_client_by_id(args.data.client_id) if client and client.name == 'sourcekit' then client.server_capabilities.colorProvider = false end...