init.lua: update section comments to match upstream

This commit is contained in:
Damjan 9000 2023-11-07 17:26:53 +01:00 committed by dlsaldanas
parent bf94d21ddd
commit 85cb3c3dbd
1 changed files with 1 additions and 8 deletions

View File

@ -92,11 +92,6 @@ vim.g.maplocalleader = ' '
-- Set to true if you have a Nerd Font installed and selected in the terminal
vim.g.have_nerd_font = true
-- Install lazy plugin manager
require('lazy-bootstrap')
-- Setup lazy plugin manager - configure plugins
require('lazy-plugins')
-- [[ Setting options ]]
-- See `:help vim.o`
@ -107,7 +102,7 @@ require('lazy-plugins')
vim.o.number = true
-- You can also add relative line numbers, to help with jumping.
-- Experiment for yourself to see if you like it!
-- vim.o.relativenumber = true
vim.o.relativenumber = true
-- Enable mouse mode, can be useful for resizing splits for example!
vim.o.mouse = 'a'
@ -953,8 +948,6 @@ require('lazy').setup({
},
},
})
-- Configure CMP (completion)
require('cmp-setup')
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et