From ef194036ae41a1d56a0e2b1e52609c7e15c3afaf Mon Sep 17 00:00:00 2001 From: Penelope Gwen Date: Mon, 9 Feb 2026 18:30:01 -0800 Subject: [PATCH] New backup 2026-02-09 18:30:01 --- default/home/.config/nvim/lazy-lock.json | 5 +++++ default/home/.config/nvim/lua/config/lazy.lua | 6 ++++-- .../home/.config/nvim/lua/plugins/example.lua | 9 +++++---- .../home/.config/nvim/lua/plugins/seoul256.lua | 16 ++++++++++++++++ 4 files changed, 30 insertions(+), 6 deletions(-) create mode 100644 default/home/.config/nvim/lua/plugins/seoul256.lua diff --git a/default/home/.config/nvim/lazy-lock.json b/default/home/.config/nvim/lazy-lock.json index 36fffb7..ad124b4 100644 --- a/default/home/.config/nvim/lazy-lock.json +++ b/default/home/.config/nvim/lazy-lock.json @@ -1,5 +1,6 @@ { "LazyVim": { "branch": "main", "commit": "28db03f958d58dfff3c647ce28fdc1cb88ac158d" }, + "SchemaStore.nvim": { "branch": "main", "commit": "b850ab25279ba04ada90e8b696ef5d0624af103d" }, "blink.cmp": { "branch": "main", "commit": "4b18c32adef2898f95cdef6192cbd5796c1a332d" }, "bufferline.nvim": { "branch": "main", "commit": "655133c3b4c3e5e05ec549b9f8cc2894ac6f51b3" }, "catppuccin": { "branch": "main", "commit": "beaf41a30c26fd7d6c386d383155cbd65dd554cd" }, @@ -16,6 +17,7 @@ "mini.ai": { "branch": "main", "commit": "9eae720f2b20f6ad28cbfa0ddc524e10dc2c3201" }, "mini.icons": { "branch": "main", "commit": "efc85e42262cd0c9e1fdbf806c25cb0be6de115c" }, "mini.pairs": { "branch": "main", "commit": "4089aa6ea6423e02e1a8326a7a7a00159f6f5e04" }, + "mini.starter": { "branch": "main", "commit": "8ee6ce6a4c9be47682516908557cc062c4d595a2" }, "noice.nvim": { "branch": "main", "commit": "7bfd942445fb63089b59f97ca487d605e715f155" }, "nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" }, "nvim-lint": { "branch": "master", "commit": "bcd1a44edbea8cd473af7e7582d3f7ffc60d8e81" }, @@ -25,10 +27,13 @@ "nvim-ts-autotag": { "branch": "main", "commit": "8e1c0a389f20bf7f5b0dd0e00306c1247bda2595" }, "persistence.nvim": { "branch": "main", "commit": "b20b2a7887bd39c1a356980b45e03250f3dce49c" }, "plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" }, + "seoul256.nvim": { "branch": "master", "commit": "726f88a77c02418aa5cb72a81c85bfb5ba2704d9" }, "snacks.nvim": { "branch": "main", "commit": "fe7cfe9800a182274d0f868a74b7263b8c0c020b" }, + "telescope.nvim": { "branch": "master", "commit": "ad7d9580338354ccc136e5b8f0aa4f880434dcdc" }, "todo-comments.nvim": { "branch": "main", "commit": "31e3c38ce9b29781e4422fc0322eb0a21f4e8668" }, "tokyonight.nvim": { "branch": "main", "commit": "5da1b76e64daf4c5d410f06bcb6b9cb640da7dfd" }, "trouble.nvim": { "branch": "main", "commit": "bd67efe408d4816e25e8491cc5ad4088e708a69a" }, "ts-comments.nvim": { "branch": "main", "commit": "123a9fb12e7229342f807ec9e6de478b1102b041" }, + "typescript.nvim": { "branch": "main", "commit": "4de85ef699d7e6010528dcfbddc2ed4c2c421467" }, "which-key.nvim": { "branch": "main", "commit": "3aab2147e74890957785941f0c1ad87d0a44c15a" } } diff --git a/default/home/.config/nvim/lua/config/lazy.lua b/default/home/.config/nvim/lua/config/lazy.lua index 3d8d764..9eeccfe 100644 --- a/default/home/.config/nvim/lua/config/lazy.lua +++ b/default/home/.config/nvim/lua/config/lazy.lua @@ -14,6 +14,7 @@ if not (vim.uv or vim.loop).fs_stat(lazypath) then end vim.opt.rtp:prepend(lazypath) vim.g.seoul256_disable_background = true +--require("seoul256") require("lazy").setup({ spec = { @@ -25,7 +26,8 @@ require("lazy").setup({ 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, + lazy = true, + -- 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 @@ -34,7 +36,7 @@ require("lazy").setup({ -- install = { colorscheme = { "seoul256" } }, checker = { enabled = true, -- check for plugin updates periodically - notify = false, -- notify on update + notify = true, -- notify on update }, -- automatically check for plugin updates performance = { rtp = { diff --git a/default/home/.config/nvim/lua/plugins/example.lua b/default/home/.config/nvim/lua/plugins/example.lua index 8da98e4..4d32d6a 100644 --- a/default/home/.config/nvim/lua/plugins/example.lua +++ b/default/home/.config/nvim/lua/plugins/example.lua @@ -18,10 +18,11 @@ return { -- Configure LazyVim to load gruvbox { "LazyVim/LazyVim", - opts = { - colorscheme = "seoul256", - -- colorscheme = "gruvbox", - }, + -- opts = { + -- colorscheme = "seoul256", + -- colorscheme = "gruvbox", + -- }, + -- require("seoul256"), }, -- change trouble config diff --git a/default/home/.config/nvim/lua/plugins/seoul256.lua b/default/home/.config/nvim/lua/plugins/seoul256.lua new file mode 100644 index 0000000..0c7ab29 --- /dev/null +++ b/default/home/.config/nvim/lua/plugins/seoul256.lua @@ -0,0 +1,16 @@ +return { + { + "shaunsingh/seoul256.nvim", + -- opts = { + -- seoul256_disable_background = true, + -- }, + }, + + -- vim.g.seoul256_disable_background = false + { + "LazyVim/LazyVim", + opts = { + colorscheme = "seoul256", + }, + }, +}