summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/user/options.lua
blob: ef987ffd0dd46e6fd623107b4cc5e805432435b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
vim.opt.tabstop = 4
vim.opt.shiftwidth = 0
vim.opt.expandtab = false

vim.opt.shortmess:append { s = true, I = true }

vim.g.mapleader = ' '
vim.g.maplocalleader = '\\'

vim.opt.signcolumn="yes"

vim.diagnostic.config({
	virtual_text = true
})