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 --$ URL: https://github.com/williamboman/mason.nvim
--$ :Mason --$ :Mason
return { return {
{
"mason-org/mason-lspconfig.nvim",
opts = {},
dependencies = {
{
"williamboman/mason.nvim", "williamboman/mason.nvim",
config = function() config = function()
require("mason").setup() require("mason").setup()
end, end,
},
opts = { "neovim/nvim-lspconfig",
ensure_installed = {
--C / C++
"clangd",
"clang-format",
"codelldb",
}, },
}, },
} }

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, "LineNr", { fg = "white", bold = true })
vim.api.nvim_set_hl(0, "LineNrBelow", { fg = "#FB508F", bold = true }) vim.api.nvim_set_hl(0, "LineNrBelow", { fg = "#FB508F", bold = true })
end end
LineNumberColors() LineNumberColors()