26 lines
505 B
Lua

local g = vim.g
g.mapleader = " "
g.loaded_netrw = 1
g.loaded_netrwPlugin = 1
local opt = vim.opt
opt.autowrite = false
opt.expandtab = false
opt.shiftwidth = 4
opt.tabstop = 4
opt.softtabstop = 4
opt.autoindent = true
opt.smartindent = true
opt.spell = false
opt.conceallevel = 0
opt.ignorecase = false
opt.number = true
opt.relativenumber = false
opt.cursorline = true
opt.cursorlineopt = "both"
opt.termguicolors = true
opt.signcolumn = "yes"
opt.laststatus = 0
opt.showmode = false
opt.ruler = false