summaryrefslogtreecommitdiffstats
path: root/nvim
diff options
context:
space:
mode:
authorDheepak Krishnamurthy <me@kdheepak.com>2023-07-01 12:34:20 -0400
committerDheepak Krishnamurthy <me@kdheepak.com>2023-07-01 12:40:08 -0400
commitd291d9d78809f839c370cbb630ecbb236d61be2b (patch)
tree4d89bb4267c5963e11a4b1f238c055c9ab0ed78b /nvim
parent401dbc361f1f6e7fee02588aa5daa38ca25f7ab1 (diff)
downloaddots-d291d9d78809f839c370cbb630ecbb236d61be2b.tar.gz
Make init.lua copy-paste friendly
Diffstat (limited to 'nvim')
-rw-r--r--nvim/init.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/nvim/init.lua b/nvim/init.lua
index fd36919..f8d9383 100644
--- a/nvim/init.lua
+++ b/nvim/init.lua
@@ -197,12 +197,13 @@ require('lazy').setup({
-- require 'kickstart.plugins.autoformat',
-- require 'kickstart.plugins.debug',
- -- NOTE: The import below automatically adds your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
+ -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
-- You can use this folder to prevent any conflicts with this init.lua if you're interested in keeping
-- up-to-date with whatever is in the kickstart repo.
+ -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
--
-- For additional information see: https://github.com/folke/lazy.nvim#-structuring-your-plugins
- { import = 'custom.plugins' },
+ -- { import = 'custom.plugins' },
}, {})
-- [[ Setting options ]]