]> git.r.bdr.sh - rbdr/dotfiles/blobdiff - config/nvim/lua/plugins.lua
Use ts_ls
[rbdr/dotfiles] / config / nvim / lua / plugins.lua
index 35f832743285357faba034fb54318dcbab0c37a1..8ac276663c86184ca6cb06ffe8e5b19566dfd817 100644 (file)
@@ -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',
 })