diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-04-11 16:00:13 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-04-11 16:00:13 +0200 |
| commit | 9748abe38cb64bfa388c3f5d441b3779f425cfdf (patch) | |
| tree | 58386f866bfbec3c8579e6d3324445f58eb6d01d /config/nvim/lua/plugins.lua | |
| parent | 7c36e04c36413c0469bc9f2a329ad362735a0ecf (diff) | |
| parent | 957e0f6119ab3681e02029cdd98d0a1bc3bbe092 (diff) | |
Merge branch 'main' of git.sr.ht:~rbdr/dotfiles
Diffstat (limited to 'config/nvim/lua/plugins.lua')
| -rw-r--r-- | config/nvim/lua/plugins.lua | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index e4dadf6..882c76d 100644 --- a/config/nvim/lua/plugins.lua +++ b/config/nvim/lua/plugins.lua @@ -56,7 +56,6 @@ require('lazy').setup({ -- Syntaxes 'ARM9/snes-syntax-vim', 'https://git.sr.ht/~torresjrjr/gemini.vim', - { 'folke/neodev.nvim', opts = {} }, --'Debugging { @@ -78,21 +77,6 @@ require('lazy').setup({ }, 'michaeljsmith/vim-indent-object', { - 'Pocco81/auto-save.nvim', - opts = { - condition = function(buf) - local fn = vim.fn - local utils = require('auto-save.utils.data') - - if fn.getbufvar(buf, '&modifiable') == 1 - and utils.not_in(fn.getbufvar(buf, '&filetype'), {'oil'}) then - return true - end - return false - end, - } - }, - { 'danymat/neogen', config = true }, @@ -103,7 +87,11 @@ require('lazy').setup({ -- LSP 'neovim/nvim-lspconfig', - 'folke/neodev.nvim', + { + "folke/lazydev.nvim", + ft = "lua", + opts = {}, + }, -- Tools 'mbbill/undotree', |