diff options
| author | brxxlstxrs <92815065+brxxlstxrs@users.noreply.github.com> | 2024-02-27 21:08:37 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-27 13:08:37 -0500 |
| commit | 76811d082e586fc913259acbd89a665fa2af6149 (patch) | |
| tree | d943cb92afd70ca0458f211820a19f00c8bfe6e3 /nvim/init.lua | |
| parent | 534966f5e2495e24407b49f05e31ca9b457fbfc9 (diff) | |
| download | dots-76811d082e586fc913259acbd89a665fa2af6149.tar.gz | |
add plugin specs docstring, remove lazy.nvim configuration (empty) table (#652)
Diffstat (limited to 'nvim/init.lua')
| -rw-r--r-- | nvim/init.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index 1e5691a..0506b3e 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -218,7 +218,9 @@ vim.opt.rtp:prepend(lazypath) -- :Lazy update -- -- NOTE: Here is where you install your plugins. -require('lazy').setup({ +require('lazy').setup { + + -- [[ Plugin Specs list ]] -- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link). 'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically @@ -808,7 +810,7 @@ require('lazy').setup({ -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going. -- For additional information see: :help lazy.nvim-lazy.nvim-structuring-your-plugins -- { import = 'custom.plugins' }, -}, {}) +} -- The line beneath this is called `modeline`. See `:help modeline` -- vim: ts=2 sts=2 sw=2 et |