Julian Hauser
Julian Hauser
You're right. Disabling treesitter highlights does change highlights for me too. What's odd though is that on first loading the file, standard syntax highlighting is working also, somehow superimposed. When...
@gjeusel: Not sure if I'm doing something wrong, but it doesn't seem to work for me. I copied and pasted your exact config and folds aren't closed when i first...
Thank you! With some adjustments it worked for telescope-frecency, too! ```lua extensions.frecency.my_frecency = function(opts) opts = opts or {} return extensions.frecency.frecency(vim.tbl_extend("error", find_files_opts, opts)) end nvim_set_keymap('n', 'fm', "lua require('telescope').extensions.frecency.my_frecency()", {noremap =...
All of the solutions seem to [not work with nvim-ufo](https://github.com/kevinhwang91/nvim-ufo/issues/45). Anyone have any ideas about a workaround to get the workaround to work? :rofl:
Thanks a lot @anuvyklack! I modified it a bit to get my desired behaviour, namely to restore views: ```lua vim.api.nvim_create_autocmd("BufRead", { callback = function() vim.api.nvim_create_autocmd("BufWinEnter", { once = true, callback...
Thanks for the idea, but I don't think that's it. The colon isn't needed, but I think it's simply ignored. In any case, the result is the same: with `vim.cmd`...
@anuvyklack, the developer of ufo has implemented a change, so that now i'm able to go back to a simple `vim.cmd` commands, no more iffy `feedkeys` stuff needed!
Great to hear that this is in the works! I'm not sure if I understand all aspects of your proposal correctly, so please forgive me if the following small comments...
Thanks for the explanation! I do like the idea of using the place where you 'import' the labels as the marker of where the bibliography will go -- it seems...
I think a similar issue arises in other plugins. For instance, [nvim-ufo](https://github.com/kevinhwang91/nvim-ufo) can't highlight the fold text in neorg files. (It generally doesn't deal well with neorg folds, which might...