diff options
| author | Gaurav Bhatnagar <gbhatnagar@berkeley.edu> | 2023-05-22 11:29:42 -0700 |
|---|---|---|
| committer | Gaurav Bhatnagar <gbhatnagar@berkeley.edu> | 2023-05-22 11:30:25 -0700 |
| commit | c85e48019c5b44de2e2073cc36f343fa83c85436 (patch) | |
| tree | 08e51bf174949cc604ce4bd76616f4e4bf977adc /nvim/init.lua | |
| parent | 1a1ad0022dda95b82dca6d45d5c6b953b5efbbd2 (diff) | |
| download | dots-c85e48019c5b44de2e2073cc36f343fa83c85436.tar.gz | |
refact: remove after/ reference in readme, other clean-up items
Diffstat (limited to 'nvim/init.lua')
| -rw-r--r-- | nvim/init.lua | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index bc60ef8..fb0252c 100644 --- a/nvim/init.lua +++ b/nvim/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! @@ -202,14 +202,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 |