Files
dotfiles/nvim/lua/plugins/lf.lua
2023-08-05 08:31:51 +02:00

22 lines
450 B
Lua

-- Lf file manager for Neovim
-- https://github.com/lmburns/lf.nvim
return {
"lmburns/lf.nvim",
cmd = "Lf",
dependencies = {
"nvim-lua/plenary.nvim",
"akinsho/toggleterm.nvim",
},
keys = {
{ "<leader>fl", "<cmd>Lf<cr>", desc = "Lf File Manager" },
},
opts = {
winblend = 0,
highlights = { NormalFloat = { guibg = "NONE" } },
border = "curved",
height = 0.70,
width = 0.85,
escape_quit = true,
},
}