feat(nix): migrate Neovim to Nix (as a symlink)

This commit is contained in:
Stefan Imhoff
2024-07-31 10:51:38 +02:00
parent b4819e3187
commit 65baf19f82
134 changed files with 64 additions and 82 deletions

View File

@@ -0,0 +1,19 @@
-- 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,
},
}