updated theme

This commit is contained in:
2026-08-11 17:39:01 +02:00
parent 8d657d0f8d
commit 2cbfe6946a
7 changed files with 526 additions and 45 deletions
+12 -12
View File
@@ -2,10 +2,11 @@ require("mini.deps").setup()
local add = MiniDeps.add
-- UI & Theming
add({ source = "catppuccin/nvim", name = "catppuccin" })
-- The colourscheme is local (colors/takemi.lua), so there is no theme plugin.
add({ source = "nvim-lualine/lualine.nvim" })
add({ source = "lewis6991/gitsigns.nvim" })
add({ source = "folke/which-key.nvim" })
add({ source = "mpas/marp-nvim" })
-- Utility & Editing
add({ source = "akinsho/toggleterm.nvim" })
@@ -24,25 +25,24 @@ add({ source = "mfussenegger/nvim-lint" })
add({ source = "seblyng/roslyn.nvim" })
add({ source = "tris203/rzls.nvim" })
add({ source = "https://git.narl.io/nvrl/mould-rs", checkout = "main" })
add({ source = "ray-x/go.nvim" })
-- Autocompletion
add({
source = "Saghen/blink.cmp",
depends = { "rafamadriz/friendly-snippets" },
hooks = {
post_install = function(ctx)
vim.cmd("!cd " .. ctx.path .. " && cargo build --release")
end,
post_checkout = function(ctx)
vim.cmd("!cd " .. ctx.path .. " && cargo build --release")
end,
},
source = "saghen/blink.cmp",
depends = {'saghen/blink.lib', "rafamadriz/friendly-snippets" },
hooks = {
-- NOTE: v2 also changed how the rust binary is built!
-- Replace the old 'cargo build --release' string with the new Lua API:
post_install = function() require('blink.cmp').build():pwait(60000) end,
post_checkout = function() require('blink.cmp').build():pwait(60000) end,
}
})
-- Treesitter
add({
source = "nvim-treesitter/nvim-treesitter",
checkout = "master",
checkout = "main",
monitor = "main",
hooks = {
post_checkout = function()