Don't automatically insert linebreaks

This commit is contained in:
Zach Zolton 2024-09-30 18:43:38 -04:00
parent 2464f21e8c
commit 523dd51821
1 changed files with 3 additions and 0 deletions

View File

@ -909,6 +909,9 @@ require('lazy').setup({
-- Used for wrapping during text formatting
vim.o.textwidth = 120
-- Don't automatically insert linebreaks
vim.opt.formatoptions:remove { "t" }
-- Set highlight on search
vim.o.hlsearch = true