This commit is contained in:
Nina Chloé Kassandra Reiss 2025-02-02 17:11:34 +00:00
parent d48c488e8e
commit 3350fd1e85
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
-- Basic stuff
vim.opt.compatible = false
vim.cmd("filetype on")
vim.cmd("filetype plugin on")
vim.cmd("syntax on")
vim.opt.number = true
vim.opt.relativenumber = true
vim.g.mapleader = ","
vim.opt.splitright = true
vim.opt.splitbelow = true
vim.opt.autoread = true
-- pure optics
vim.opt.cursorline = true
vim.opt.hlsearch = true
vim.opt.encoding = "UTF-8"
vim.opt.conceallevel = 2
vim.g.tex_flavor = "latex"
vim.opt.showmatch = true
-- Spell
vim.opt.spell = true
vim.opt.spl = "en_us,de_de"