blob: 879017aaf7ee78464322058c06899a0099915bcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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.opt.cursorline = true
vim.diagnostic.config({
virtual_text = true,
})
|