blob: d2163fd3cb548ffda96a38557a7ecde8fca4371d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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="number"
vim.opt.number=true
vim.opt.fillchars:append({ eob = " " })
vim.diagnostic.config({
virtual_text = true,
update_in_insert = true,
})
|