fix(init.lua): enable line wrapping by setting vim.opt.wrap to true

fix(init.lua): remove color column limit by setting vim.opt.colorcolumn to an empty string
This commit is contained in:
David Ibia
2024-01-02 14:51:03 +01:00
parent 50b968ed9d
commit 6d7c3de411

View File

@@ -10,7 +10,7 @@ vim.opt.expandtab = true
vim.opt.smartindent = true vim.opt.smartindent = true
vim.opt.wrap = false vim.opt.wrap = true
vim.opt.swapfile = false vim.opt.swapfile = false
vim.opt.backup = false vim.opt.backup = false
@@ -28,6 +28,6 @@ vim.opt.isfname:append("@-@")
vim.opt.updatetime = 50 vim.opt.updatetime = 50
vim.opt.colorcolumn = "100" vim.opt.colorcolumn = ""
vim.g.mapleader = " " vim.g.mapleader = " "