summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorGaurav Bhatnagar <gbhatnagar@berkeley.edu>2023-05-22 11:29:42 -0700
committerGaurav Bhatnagar <gbhatnagar@berkeley.edu>2023-05-22 11:30:25 -0700
commit8d97b11dd8fb7bda1857ab30bb45b067947da797 (patch)
tree513caed0b34f4acae06d9b8a7fb3111bcc444063 /init.lua
parent8a647f4384eb7d38259474db042b9e5291b6f6b5 (diff)
refact: remove after/ reference in readme, other clean-up items
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua8
1 files changed, 3 insertions, 5 deletions
diff --git a/init.lua b/init.lua
index c77ff26..4719912 100644
--- a/init.lua
+++ b/init.lua
@@ -7,8 +7,8 @@
Kickstart.nvim is *not* a distribution.
Kickstart.nvim is a template for your own configuration.
- The goal is that you can read every line of code, top-to-bottom, and understand
- what your configuration is doing.
+ The goal is that you can read every line of code, top-to-bottom, understand
+ what your configuration is doing, and modify it to suit your needs.
Once you've done that, you should start exploring, configuring and tinkering to
explore Neovim!
@@ -192,14 +192,12 @@ require('lazy').setup({
-- up-to-date with whatever is in the kickstart repo.
--
-- For additional information see: https://github.com/folke/lazy.nvim#-structuring-your-plugins
- --
- -- An additional note is that if you only copied in the `init.lua`, you can just comment this line
- -- to get rid of the warning telling you that there are not plugins in `lua/custom/plugins/`.
{ import = 'custom.plugins' },
}, {})
-- [[ Setting options ]]
-- See `:help vim.o`
+-- NOTE: You can change these options as you wish!
-- Set highlight on search
vim.o.hlsearch = false