From 96308e308847e439cc241e2545c7e6c642ad2d7e Mon Sep 17 00:00:00 2001 From: Dennis Chan Date: Wed, 16 Jul 2025 18:19:06 +0800 Subject: [PATCH] remove some comment --- init.lua | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/init.lua b/init.lua index 0a621c72..37032699 100644 --- a/init.lua +++ b/init.lua @@ -1,3 +1,4 @@ +vim.o.wrap = false vim.o.autoread = true vim.api.nvim_create_autocmd({ 'FocusGained', 'BufEnter', 'CursorHold', 'CursorHoldI' }, { @@ -760,10 +761,6 @@ require('lazy').setup({ -- - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects }, - -- The following comments only work if you have downloaded the kickstart repo, not just copy pasted the - -- init.lua. If you want these files, they are in the repository, so you can just download them and - -- place them in the correct locations. - -- NOTE: Next step on your Neovim journey: Add/Configure additional plugins for Kickstart -- -- Here are some example plugins that I've included in the Kickstart repository. @@ -777,8 +774,6 @@ require('lazy').setup({ -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua` -- This is the easiest way to modularize your config. - -- - -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going. { import = 'plugins' }, -- -- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`