feat: disable wraping
This commit is contained in:
parent
96bc0c4b14
commit
3d6b0934b0
2
init.lua
2
init.lua
|
|
@ -52,6 +52,8 @@ vim.opt.splitbelow = true
|
||||||
vim.opt.list = false
|
vim.opt.list = false
|
||||||
vim.opt.listchars = { trail = '·', nbsp = '␣', tab = ' ' }
|
vim.opt.listchars = { trail = '·', nbsp = '␣', tab = ' ' }
|
||||||
|
|
||||||
|
vim.opt.wrap = false
|
||||||
|
|
||||||
vim.opt.tabstop = 2 -- Number of spaces that a <Tab> in the file counts for
|
vim.opt.tabstop = 2 -- Number of spaces that a <Tab> in the file counts for
|
||||||
vim.opt.shiftwidth = 2 -- Number of spaces to use for each step of (auto)indent
|
vim.opt.shiftwidth = 2 -- Number of spaces to use for each step of (auto)indent
|
||||||
vim.opt.expandtab = true -- Use spaces instead of actual tab characters
|
vim.opt.expandtab = true -- Use spaces instead of actual tab characters
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue