1
0
Fork 0

attempt at fixing lf.vim

This commit is contained in:
Luca Bilke 2023-02-21 19:24:42 +01:00
parent 7810506cd2
commit 7f93f118a7
2 changed files with 9 additions and 8 deletions

View File

@ -1,9 +1,9 @@
-- Defaults
require("lf").setup({
default_actions = {},
winblend = 0,
highlights = {
border = "Normal",
background = "Normal",
NormalFloat = { guibg = "NONE" }
},
border = "rounded",
})

View File

@ -185,12 +185,6 @@ local plugins = {
require('funcs').map("comment")
end,
},
{ "lmburns/lf.nvim",
config = function()
require('plugins.config.lf')
require('funcs').map("lf")
end
},
{ "nvim-telescope/telescope.nvim",
config = function()
require('plugins.config.telescope')
@ -207,6 +201,13 @@ local plugins = {
opt = true,
run = ":call nvim_ghost#installer#install()",
},
{ "lmburns/lf.nvim",
opt = true,
config = function()
require('plugins.config.lf')
require('funcs').map("lf")
end
},
}
local status_ok, packer = pcall(require, "packer")