feat:lazyvim-nix

add:opencode

Version 451 -> 452:
  dart: 3.10.3 → ∅
  dbeaver-bin: 25.3.0 → 25.3.1, -2025.8 KiB
  deno: 2.5.6 → 2.6.3, +909.8 KiB
  firefox-unwrapped: -68.5 KiB
  firmware: +20.7 KiB
  flutter: 3.38.4 → 3.38.5
  flutter-tools: 3.38.4 → 3.38.5
  flutter-wrapped: 3.38.4, 3.38.4-sdk → 3.38.5, 3.38.5-sdk
  golines: -3157.3 KiB
  gpsd: 3.27 → 3.27.2, -14.5 KiB
  initrd-linux-zen: 6.18.1 → 6.18.2
  ipxe: 1.21.1-unstable-2025-12-15 → 1.21.1-unstable-2025-12-22, +19.4 KiB
  just: 1.43.1 → 1.45.0, +84.2 KiB
  libvlc: 3.0.23 → 3.0.23-2, +8.8 KiB
  linux-firmware: 20251125 → 20251125-unstable-2025-12-18, +7566.1 KiB
  linux-zen: 6.18.1, 6.18.1-modules → 6.18.2, 6.18.2-modules, +31.2 KiB
  mpv: 0.40.0 → 0.41.0, +165.6 KiB
  mpv-with-scripts: 0.40.0 → 0.41.0
  nixd: 2.7.0 → 2.8.0
  nixf: 2.7.0 → 2.8.0, +125.9 KiB
  nixos-system-dos: 26.05.20251221.a653104 → 26.05.20251225.3e2499d
  nixt: 2.7.0 → 2.8.0
  opencode: 1.0.180 → 1.0.184, +26.3 KiB
  pnpm: 10.25.0 → 10.26.1
  python3.13-curl-cffi: 0.14.0b2 → 0.14.0, +106.2 KiB
  source: +160.8 KiB
  strawberry: 1.2.13 → 1.2.16, +174.0 KiB
  wireplumber: 0.5.12 → 0.5.13, +40.7 KiB
This commit is contained in:
dichgrem
2025-12-24 19:11:10 +08:00
parent 6decde827c
commit 785bdefbaf
8 changed files with 114 additions and 329 deletions

View File

@@ -1,8 +0,0 @@
-- Autocmds are automatically loaded on the VeryLazy event
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua
--
-- Add any additional autocmds here
-- with `vim.api.nvim_create_autocmd`
--
-- Or remove existing autocmds by their group name (which is prefixed with `lazyvim_` for the defaults)
-- e.g. vim.api.nvim_del_augroup_by_name("lazyvim_wrap_spell")

View File

@@ -1,53 +0,0 @@
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
if vim.v.shell_error ~= 0 then
vim.api.nvim_echo({
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
{ out, "WarningMsg" },
{ "\nPress any key to exit..." },
}, true, {})
vim.fn.getchar()
os.exit(1)
end
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
spec = {
-- add LazyVim and import its plugins
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
-- import/override with your plugins
{ import = "plugins" },
},
defaults = {
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
-- If you know what you're doing, you can set this to `true` to have all your custom plugins lazy-loaded by default.
lazy = false,
-- It's recommended to leave version=false for now, since a lot the plugin that support versioning,
-- have outdated releases, which may break your Neovim install.
version = false, -- always use the latest git commit
-- version = "*", -- try installing the latest stable version for plugins that support semver
},
install = { colorscheme = { "tokyonight", "habamax" } },
checker = {
enabled = true, -- check for plugin updates periodically
notify = false, -- notify on update
}, -- automatically check for plugin updates
performance = {
rtp = {
-- disable some rtp plugins
disabled_plugins = {
"gzip",
-- "matchit",
-- "matchparen",
-- "netrwPlugin",
"tarPlugin",
"tohtml",
"tutor",
"zipPlugin",
},
},
},
})