add quick no-wrap configuration

This commit is contained in:
Nick Burt 2026-06-03 20:33:20 -05:00
parent e71cc02e74
commit 049902a802
1 changed files with 4 additions and 0 deletions

View File

@ -104,6 +104,9 @@ vim.o.number = true
-- Experiment for yourself to see if you like it!
vim.o.relativenumber = true
-- Set to nowrap //TODO: can this be in a separate file than the init.lua to avoid conflicts with upstream?
vim.o.wrap = false
-- Enable mouse mode, can be useful for resizing splits for example!
vim.o.mouse = 'a'
@ -703,6 +706,7 @@ require('lazy').setup({
javascript = true,
typescript = true,
typescriptreact = true,
cs = true,
-- python = true,
}
if enabled_filetypes[vim.bo[bufnr].filetype] then