2024-04-23 04:34:15 +02:00
|
|
|
vim.g.mapleader = " "
|
|
|
|
vim.g.maplocalleader = " "
|
|
|
|
|
2024-06-13 12:04:48 +02:00
|
|
|
vim.cmd.colorscheme("default")
|
|
|
|
-- vim.opt.background = "light"
|
|
|
|
|
2024-04-23 04:34:15 +02:00
|
|
|
require("options")
|
|
|
|
require("manager")
|
|
|
|
require("autocommands")
|
|
|
|
require("mappings")
|
2024-06-13 12:04:48 +02:00
|
|
|
|
|
|
|
vim.api.nvim_set_hl(0, "DiagnosticVirtualTextError", { link = "Comment" })
|
|
|
|
vim.api.nvim_set_hl(0, "DiagnosticVirtualTextInfo", { link = "Comment" })
|
|
|
|
vim.api.nvim_set_hl(0, "DiagnosticVirtualTextWarn", { link = "Comment" })
|
|
|
|
vim.api.nvim_set_hl(0, "DiagnosticVirtualTextHint", { link = "Comment" })
|