aboutsummaryrefslogtreecommitdiff
path: root/config/nvim/lua/plugins.lua
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2024-09-07 21:25:42 +0200
committerRuben Beltran del Rio <git@r.bdr.sh>2024-09-07 21:25:42 +0200
commitf1669e803611c862ba1282802a240d383d36c645 (patch)
tree052a45f90b6d44cefefadb2a5f98227a804638fe /config/nvim/lua/plugins.lua
parent4da600c30f5fbd567a8ca8922c46680a6710a427 (diff)
Update plugins, add oleoboard
Diffstat (limited to 'config/nvim/lua/plugins.lua')
-rw-r--r--config/nvim/lua/plugins.lua13
1 files changed, 9 insertions, 4 deletions
diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua
index 35f8327..8ac2766 100644
--- a/config/nvim/lua/plugins.lua
+++ b/config/nvim/lua/plugins.lua
@@ -1,5 +1,4 @@
-local lazypath = vim.fn.stdpath('data') .. '/lazy/lazy.nvim'
-if not vim.loop.fs_stat(lazypath) then
+local lazypath = vim.fn.stdpath('data') .. '/lazy/lazy.nvim' if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
'git',
'clone',
@@ -60,7 +59,12 @@ require('lazy').setup({
{ 'folke/neodev.nvim', opts = {} },
--'Debugging
- 'mfussenegger/nvim-dap',
+ {
+ 'mfussenegger/nvim-dap',
+ dependencies = {
+ 'nvim-neotest/nvim-nio'
+ }
+ },
'rcarriga/nvim-dap-ui',
'mxsdev/nvim-dap-vscode-js',
@@ -123,5 +127,6 @@ require('lazy').setup({
}
} },
- 'https://git.sr.ht/~rbdr/nota.nvim'
+ 'https://git.sr.ht/~rbdr/nota.nvim',
+ 'https://git.sr.ht/~rbdr/oleoboard.nvim',
})