···45454646vim.opt.syntax = "on" -- Enables syntax highlighing
4747vim.opt.smartcase = true -- Do not ignore case with capitals
4848-vim.opt.conceallevel = 3 -- Markdown files behave like Obsidian, *italic*, **bold** and even [links](https...) are hidden. Amaziing!
4848+vim.opt.conceallevel = 2 -- Markdown files behave like Obsidian, *italic*, **bold** and even [links](https...) are hidden. Amaziing!
4949vim.opt.tabstop = 2 -- Insert 2 spaces for a tab
5050vim.opt.shiftwidth = 2 -- Change the number of space characters inserted for indentation
5151vim.opt.softtabstop = 2 --Number of spaces that a <Tab> counts for while performing editing operations, like inserting a <Tab> or using <BS>