Shougo
Shougo
Respect iskeyword and Add Support for Dictionary Based Completion (opt.dictionary and opt.thesaurus)
> Respect iskeyword Please see this. https://github.com/hrsh7th/nvim-cmp/issues/808#issuecomment-1050879607 > Add Support for Dictionary Based Completion You should use it. https://github.com/uga-rosa/cmp-dictionary
I think the minimal init.lua or init.vim should not be depend on any of plugin mangers.
> No. As I mentioned in my comments to that question. The solution in https://github.com/hrsh7th/nvim-cmp/discussions/609#discussioncomment-1844480 only helps to truncate items to a maximum width. I think you can define minimum...
```lua local ELLIPSIS_CHAR = '…' local MAX_LABEL_WIDTH = 20 local MIN_LABEL_WIDTH = 20 cmp.setup({ formatting = { format = function(entry, vim_item) local label = vim_item.abbr local truncated_label = vim.fn.strcharpart(label, 0,...
It seems nothing. It should be requested to neovim itself.
Oh, it seems implemented
Hm... It is hard to understand. Can you upload the screenshot?
I think monolithic repo make worse for bisecting problem. Because you cannot disable specific plugins. If you only use one very very big plugin repository, can you research the plugin...
Vim spellsuggest API is slow and it blocks your neovim. Path source is depends on disk speed.
Can you upload the examples?