2026-03-17 20:43:35 +01:00
|
|
|
local opt = vim.opt
|
|
|
|
|
vim.g.mapleader = " "
|
|
|
|
|
vim.g.maplocalleader = "\\"
|
|
|
|
|
opt.number = true
|
|
|
|
|
opt.relativenumber = true
|
2026-03-20 11:34:59 +01:00
|
|
|
|
2026-03-17 20:43:35 +01:00
|
|
|
opt.cursorline = true
|
|
|
|
|
opt.termguicolors = true
|
2026-03-25 10:48:29 +01:00
|
|
|
opt.winborder = "rounded"
|
2026-03-17 20:43:35 +01:00
|
|
|
opt.signcolumn = "yes"
|
|
|
|
|
vim.lsp.inlay_hint.enable = true
|
|
|
|
|
opt.tabstop = 8
|
|
|
|
|
vim.opt.expandtab = true
|
2026-03-25 10:48:29 +01:00
|
|
|
vim.g.tinted_background_transparent = 1
|
2026-03-17 20:43:35 +01:00
|
|
|
|
|
|
|
|
opt.shiftwidth = 8
|
|
|
|
|
vim.diagnostic.config({
|
|
|
|
|
virtual_text = {
|
2026-03-23 10:20:36 +01:00
|
|
|
spacing = 4,
|
2026-03-17 20:43:35 +01:00
|
|
|
source = true,
|
|
|
|
|
},
|
|
|
|
|
})
|
2026-03-01 18:53:20 +01:00
|
|
|
require("config.lazy")
|
|
|
|
|
require("config.keymaps")
|