2023-08-09 13:51:17 +02:00
|
|
|
-- Options are automatically loaded before lazy.nvim startup
|
|
|
|
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
|
|
|
-- Add any additional options here
|
|
|
|
--
|
|
|
|
|
|
|
|
local opt = vim.opt
|
|
|
|
opt.scrolloff = 999
|
2023-08-23 09:38:41 +02:00
|
|
|
vim.diagnostic.config({ virtual_text = false })
|
2023-08-10 18:12:00 +02:00
|
|
|
opt.title = true
|
2023-12-13 15:17:37 +01:00
|
|
|
opt.conceallevel = 0
|