16 lines
363 B
Lua
16 lines
363 B
Lua
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
|