add quick no-wrap configuration
This commit is contained in:
parent
e71cc02e74
commit
049902a802
4
init.lua
4
init.lua
|
|
@ -104,6 +104,9 @@ vim.o.number = true
|
||||||
-- Experiment for yourself to see if you like it!
|
-- Experiment for yourself to see if you like it!
|
||||||
vim.o.relativenumber = true
|
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!
|
-- Enable mouse mode, can be useful for resizing splits for example!
|
||||||
vim.o.mouse = 'a'
|
vim.o.mouse = 'a'
|
||||||
|
|
||||||
|
|
@ -703,6 +706,7 @@ require('lazy').setup({
|
||||||
javascript = true,
|
javascript = true,
|
||||||
typescript = true,
|
typescript = true,
|
||||||
typescriptreact = true,
|
typescriptreact = true,
|
||||||
|
cs = true,
|
||||||
-- python = true,
|
-- python = true,
|
||||||
}
|
}
|
||||||
if enabled_filetypes[vim.bo[bufnr].filetype] then
|
if enabled_filetypes[vim.bo[bufnr].filetype] then
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue