This commit is contained in:
Morten Olsen
2025-10-21 21:08:37 +02:00
parent 0c242f93ec
commit b21124a8d9
5 changed files with 28 additions and 3 deletions

View File

@@ -1,3 +1,5 @@
-- Options are automatically loaded before lazy.nvim startup
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here
vim.opt.scrolloff = 999

View File

@@ -106,4 +106,12 @@ return {
})
end,
},
{
"snacks.nvim",
opts = {
zen = {},
terminal = {},
},
},
}

11
lua/plugins/testing.lua Normal file
View File

@@ -0,0 +1,11 @@
return {
"nvim-neotest/neotest",
dependencies = {
"marilari88/neotest-vitest",
},
opts = {
adapters = {
["neotest-vitest"] = {},
},
},
}