chore: format and cleanup

This commit is contained in:
Ward Truyen
2025-07-19 22:35:41 +02:00
parent 3ed6529711
commit 3250e086e5
8 changed files with 61 additions and 61 deletions

View File

@@ -2,18 +2,17 @@
--$ URL: https://github.com/williamboman/mason.nvim
--$ :Mason
return {
{
"mason-org/mason-lspconfig.nvim",
opts = {},
dependencies = {
{
"williamboman/mason.nvim",
config = function()
require("mason").setup()
end,
opts = {
ensure_installed = {
--C / C++
"clangd",
"clang-format",
"codelldb",
},
"neovim/nvim-lspconfig",
},
},
}

View File

@@ -29,4 +29,5 @@ function LineNumberColors()
vim.api.nvim_set_hl(0, "LineNr", { fg = "white", bold = true })
vim.api.nvim_set_hl(0, "LineNrBelow", { fg = "#FB508F", bold = true })
end
LineNumberColors()