25 lines
475 B
Lua
25 lines
475 B
Lua
local opt = vim.opt
|
|
vim.g.mapleader = " "
|
|
vim.g.maplocalleader = "\\"
|
|
opt.number = true
|
|
opt.relativenumber = true
|
|
|
|
opt.cursorline = true
|
|
opt.termguicolors = true
|
|
opt.winborder = "rounded"
|
|
opt.signcolumn = "yes"
|
|
vim.lsp.inlay_hint.enable = true
|
|
opt.tabstop = 8
|
|
vim.opt.expandtab = true
|
|
vim.g.tinted_background_transparent = 1
|
|
|
|
opt.shiftwidth = 8
|
|
vim.diagnostic.config({
|
|
virtual_text = {
|
|
spacing = 4,
|
|
source = true,
|
|
},
|
|
})
|
|
require("config.lazy")
|
|
require("config.keymaps")
|