attempt at fixing lf.vim
This commit is contained in:
parent
7810506cd2
commit
7f93f118a7
|
@ -1,9 +1,9 @@
|
|||
-- Defaults
|
||||
require("lf").setup({
|
||||
default_actions = {},
|
||||
winblend = 0,
|
||||
highlights = {
|
||||
border = "Normal",
|
||||
background = "Normal",
|
||||
NormalFloat = { guibg = "NONE" }
|
||||
},
|
||||
border = "rounded",
|
||||
})
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue