diff options
| author | Alec Goncharow <alec@goncharow.dev> | 2024-04-03 00:21:28 -0400 |
|---|---|---|
| committer | Alec Goncharow <alec@goncharow.dev> | 2024-04-03 00:21:28 -0400 |
| commit | 392f7073fecce12541938a70a93b2d2dd61ce35b (patch) | |
| tree | 24c6d9cc2e3b4abb045e5c072503d3c6681edd35 /.config/nvim/lua/plugins.lua | |
| parent | a9c559f9fc070985db26e820f352395d75569eb8 (diff) | |
Wranglin
Diffstat (limited to '.config/nvim/lua/plugins.lua')
| -rw-r--r-- | .config/nvim/lua/plugins.lua | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 6498770..7bd8b20 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -8,6 +8,15 @@ return require('lazy').setup({ dependencies = { "luarocks.nvim" }, version = "*", -- Pin Neorg to the latest stable release }, + -- Lua + { + "folke/zen-mode.nvim", + opts = { + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + } + }, 'edkolev/tmuxline.vim', 'romainl/vim-cool', -- common @@ -91,7 +100,11 @@ return require('lazy').setup({ 'rmagatti/auto-session', -- auto close delimiters because lazy - 'm4xshen/autoclose.nvim', + { + 'windwp/nvim-autopairs', + event = "InsertEnter", + config = true, + }, 'mg979/vim-visual-multi', }) |
