X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/f2b3146a36e6fdc3373e6a87e0f1786961dcaf92..5862b3b69c7bb544bf5b697e5a0ade30ef90f579:/config/nvim/lua/plugins.lua?ds=inline diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index 35f8327..e4dadf6 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', @@ -68,10 +72,9 @@ require('lazy').setup({ 'ms-jpq/coq_nvim', 'RRethy/nvim-treesitter-endwise', { - 'm4xshen/autoclose.nvim', - config = function() - require('autoclose').setup() - end + 'windwp/nvim-autopairs', + event = "InsertEnter", + config = true }, 'michaeljsmith/vim-indent-object', { @@ -123,5 +126,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', })