lmburns / lf.nvim

Lf file manager for Neovim (in Lua)
MIT License
98 stars 11 forks source link

Background highlights broken #11

Closed ssnailed closed 9 months ago

ssnailed commented 1 year ago

Commit 70c9b1dd99e28deb342174e2a2be9e4a46b9a2ab Causes LF to force a background color, even when using a transparent terminal. The fixes in #5 don't seem to work.

Relevant config (functional when using 383429497292dd8a84271e74a81c6db6993ca7ab):

packer.nvim entry

{ "lmburns/lf.nvim",
    opt = true,
--    commit = "383429497292dd8a84271e74a81c6db6993ca7ab",
    config = function()
        require('plugins.config.lf')
        require('config.keymaps').map("lf")
    end
},

plugins.config.lf

local status_ok, lf = pcall(require, 'lf')
if not status_ok then
    return
end

lf.setup({
    mappings = false,
    winblend = 0,
    border = "rounded",
})
ssnailed commented 9 months ago

It seems that this has been fixed