25 lines
526 B
Lua
25 lines
526 B
Lua
-- 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
|
|
vim.opt.colorscheme = "murphy"
|
|
|
|
-- Spell
|
|
vim.opt.spell = true
|
|
vim.opt.spl = "en_us,de_de"
|