Skip to content

Commit

Permalink
fix(nvim): lf now requires setup
Browse files Browse the repository at this point in the history
  • Loading branch information
sbulav committed Sep 21, 2023
1 parent efa5b5c commit d9044e6
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion nvim/lua/plugins/misc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,15 @@ return {
{ "janko/vim-test", cmd = { "TestNearest", "TestFile", "TestSuite", "TestLast", "TestVisit" } },

-- Tree file manager
"lmburns/lf.nvim",
{
"lmburns/lf.nvim",
config = function()
require("lf").setup {
escape_quit = false,
border = "rounded",
}
end,
},

-- Redirect output to scratch buffer
"sbulav/nredir.nvim",
Expand Down

0 comments on commit d9044e6

Please sign in to comment.