vim.g.loaded_netrw = 1 vim.g.loaded_netrwPlugin = 1 vim.opt.termguicolors = true vim.o.background = "dark" vim.opt.colorcolumn = "80" vim.opt.updatetime = 50 -- Map leader to space vim.g.mapleader = ' ' -- Tabs sind für lutscher vim.opt.tabstop = 2 vim.opt.shiftwidth = 2 vim.o.expandtab = true vim.opt.smartindent = true -- QoL for search vim.opt.hlsearch = false vim.opt.incsearch = true -- Scrolling vim.opt.scrolloff = 10 vim.opt.signcolumn = "yes" vim.opt.isfname:append('@-@') -- Numbers on the side vim.wo.number = true vim.wo.relativenumber = true vim.o.ruler = true -- Show something in the command line not sure vim.o.showcmd = true vim.diagnostic.config({ virtual_text = false })