mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-04 04:35:29 +00:00
feat(nix): migrate Neovim to Nix (as a symlink)
This commit is contained in:
19
nix/home/neovim/nvim/lua/plugins/lf.lua
Normal file
19
nix/home/neovim/nvim/lua/plugins/lf.lua
Normal 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,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user