attempt at fixing lf.vim
This commit is contained in:
parent
7810506cd2
commit
7f93f118a7
|
@ -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",
|
||||||
})
|
})
|
||||||
|
|
|
@ -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")
|
||||||
|
|
Loading…
Reference in New Issue