From 16250fd7ea5692c3bf26358700cb59f99597da89 Mon Sep 17 00:00:00 2001 From: Jesper Liljegren Date: Fri, 6 Feb 2026 15:05:37 +0100 Subject: [PATCH] feat(plugins): add mason-lspconfig and catppuccin --- init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init.lua b/init.lua index d5ae6dc9..520d99f0 100644 --- a/init.lua +++ b/init.lua @@ -481,6 +481,7 @@ require('lazy').setup({ -- Mason must be loaded before its dependents so we need to set it up here. -- NOTE: `opts = {}` is the same as calling `require('mason').setup({})` { 'mason-org/mason.nvim', opts = {} }, + { 'mason-org/mason-lspconfig.nvim', opts = {} }, 'WhoIsSethDaniel/mason-tool-installer.nvim', -- Useful status updates for LSP. @@ -809,6 +810,7 @@ require('lazy').setup({ vim.cmd.colorscheme 'tokyonight-night' end, }, + { 'catppuccin/nvim', name = 'catppuccin', priority = 1000 }, -- Highlight todo, notes, etc in comments { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },