X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/f2b3146a36e6fdc3373e6a87e0f1786961dcaf92..04f376bb720976147aaef28e33920bb2a7a35a9a:/config/nvim/lua/plugins.lua?ds=sidebyside 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', })