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 -- Defaults
require("lf").setup({ require("lf").setup({
default_actions = {},
winblend = 0, winblend = 0,
highlights = { highlights = {
border = "Normal", NormalFloat = { guibg = "NONE" }
background = "Normal",
}, },
border = "rounded", border = "rounded",
}) })

View File

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