Lazy rewrite with additional configuration

This commit is contained in:
2023-12-08 11:36:26 +01:00
parent 6726b2f95b
commit 0110d8d801
14 changed files with 348 additions and 8954 deletions

15
lua/vanilla.lua Normal file
View File

@@ -0,0 +1,15 @@
vim.opt.number = true
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.opt.showmatch = true
vim.opt.cursorline = true
vim.opt.hlsearch = true
vim.opt.encoding = "UTF-8"
vim.g.tex_flavor = "latex"
vim.opt.conceallevel = 2
vim.opt.guifont = "DroidSansMono Nerd Font 11"
vim.g.mapleader = ","
-- set color scheme
vim.opt.termguicolors = true