Abouzar Parvan

Results 103 comments of Abouzar Parvan

which corresponds to this function https://github.com/LunarVim/LunarVim/blob/1569202d39c40d7a44de5eb1b10cf203dd33af41/lua/lvim/core/bufferline.lua#L142-L155

@kylo252 maybe we can add this autocommand to your latest PR 🤔 wdyt?

can you check if changing this line fixes your issue or not? ```shell lvim ~/.local/share/lunarvim/lvim/lua/lvim/lsp/utils.lua # goto line 108 ``` and chnage ```lua callback = vim.lsp.buf.clear_references, ``` to ```lua callback...

> It does fix it, but only for files that don't have an lsp attached. It seems to only be affecting files where an lsp is used (.cpp, .rs, .h,...

> which file should i put that in? `~/.config/lvim/config.lua`

do you mean the color or?

btw what is your terminal/font? i just tried the default theme and it seems to be fine 🤔

have you installed the telescope dependencies? ( [fd-find](https://github.com/sharkdp/fd) and [rg](https://github.com/BurntSushi/ripgrep) ) if yes, then you can try this ( to make sure telescope doesn't index useless files) ```lua lvim.builtin.telescope.defaults.file_ignore_patterns =...

hmm, @kylo252 any ideas what might cause this?

i mean you can try a couple of things as well 1. using a higher previewer timeout ```vim :Telescope find_files preview={timeout=1000} ``` 2. use different previewers ```lua local previewers =...