mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
20 lines
413 B
Lua
20 lines
413 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",
|
|
escape_quit = true,
|
|
},
|
|
}
|