diff options
author | Chris Patti <feoh@feoh.org> | 2023-07-07 10:01:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-07 10:01:37 -0400 |
commit | 55aa0ea3cf65e1f9e44e1f2656e4202dbaf8108b (patch) | |
tree | e4ef9cc604c79c3aaa4909fef39aa0f63ae8265b /init.lua | |
parent | b5d19fd188cb680b4ce81a72860fb6c517a29f28 (diff) | |
parent | 957655ddb8be837a37c8e1fd0dd7f5c49705986e (diff) |
Merge pull request #358 from kdheepak/patch-2
Make init.lua copy-paste friendly
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 ]] |