gennaro-tedesco / nvim-possession

📌 the no-nonsense session manager
MIT License
215 stars 7 forks source link

I have a text on the top that I don't know how to turn off #41

Closed faustozamparelli closed 3 months ago

faustozamparelli commented 3 months ago
Screenshot 2024-05-20 at 15 09 43

I have this prompt on the top '' :: to Disable .gitignore, cwd: sessions/ " how can I disable it, I don't know where it comes from. Probably it comes from a setting of fzf-lua, if it's inappropriate I'll ask in their repo.

Thanks in advance

gennaro-tedesco commented 3 months ago

Good afternoon! Yes, those are headers that can be enabled/disabled via fzf-lua settings; if I am not mistaken you can disable them via the options

...
  cwd_header = false,
  cwd_prompt = false,

in the file picker for fzf (please double check their documentation, I might remember mistakenly).

faustozamparelli commented 3 months ago

done! thanks for the hint and the response...

        require("fzf-lua").setup({
            files = {
                header = false,
            },
        })

this fixed it for anyone else with the same small problem.