diff --git a/de/home/.librewolf/profiles.ini b/de/home/.librewolf/profiles.ini index d1d6ee4..916e623 100644 --- a/de/home/.librewolf/profiles.ini +++ b/de/home/.librewolf/profiles.ini @@ -26,6 +26,11 @@ ShowSelector=0 StartWithLastProfile=1 Version=2 +[Profile4] +Name=testing +IsRelative=1 +Path=4z689ygf.testing + [Install6C4726F70D182CF7] Default=penelope Locked=1 @@ -35,8 +40,3 @@ Name=School IsRelative=1 Path=school -[Profile4] -Name=testing -IsRelative=1 -Path=4z689ygf.testing - diff --git a/default/home/.config/nvim/lazy-lock.json b/default/home/.config/nvim/lazy-lock.json index c4e722c..36fffb7 100644 --- a/default/home/.config/nvim/lazy-lock.json +++ b/default/home/.config/nvim/lazy-lock.json @@ -1,6 +1,6 @@ { - "LazyVim": { "branch": "main", "commit": "c64a61734fc9d45470a72603395c02137802bc6f" }, - "blink.cmp": { "branch": "main", "commit": "f85eb6252f4c0212be15c6c4213e9af587574cbe" }, + "LazyVim": { "branch": "main", "commit": "28db03f958d58dfff3c647ce28fdc1cb88ac158d" }, + "blink.cmp": { "branch": "main", "commit": "4b18c32adef2898f95cdef6192cbd5796c1a332d" }, "bufferline.nvim": { "branch": "main", "commit": "655133c3b4c3e5e05ec549b9f8cc2894ac6f51b3" }, "catppuccin": { "branch": "main", "commit": "beaf41a30c26fd7d6c386d383155cbd65dd554cd" }, "conform.nvim": { "branch": "master", "commit": "c2526f1cde528a66e086ab1668e996d162c75f4f" }, @@ -8,7 +8,7 @@ "friendly-snippets": { "branch": "main", "commit": "6cd7280adead7f586db6fccbd15d2cac7e2188b9" }, "gitsigns.nvim": { "branch": "main", "commit": "1ce96a464fdbc24208e24c117e2021794259005d" }, "grug-far.nvim": { "branch": "main", "commit": "275dbedc96e61a6b8d1dfb28ba51586ddd233dcf" }, - "lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" }, + "lazy.nvim": { "branch": "main", "commit": "85c7ff3711b730b4030d03144f6db6375044ae82" }, "lazydev.nvim": { "branch": "main", "commit": "5231c62aa83c2f8dc8e7ba957aa77098cda1257d" }, "lualine.nvim": { "branch": "master", "commit": "47f91c416daef12db467145e16bed5bbfe00add8" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "ae609525ddf01c153c39305730b1791800ffe4fe" }, diff --git a/default/home/.config/nvim/lua/config/lazy.lua b/default/home/.config/nvim/lua/config/lazy.lua index d73bfa1..3d8d764 100644 --- a/default/home/.config/nvim/lua/config/lazy.lua +++ b/default/home/.config/nvim/lua/config/lazy.lua @@ -13,6 +13,7 @@ if not (vim.uv or vim.loop).fs_stat(lazypath) then end end vim.opt.rtp:prepend(lazypath) +vim.g.seoul256_disable_background = true require("lazy").setup({ spec = { @@ -30,7 +31,7 @@ require("lazy").setup({ version = false, -- always use the latest git commit -- version = "*", -- try installing the latest stable version for plugins that support semver }, - install = { colorscheme = { "tokyonight", "habamax" } }, + -- install = { colorscheme = { "seoul256" } }, checker = { enabled = true, -- check for plugin updates periodically notify = false, -- notify on update diff --git a/default/home/.config/nvim/lua/plugins/example.lua b/default/home/.config/nvim/lua/plugins/example.lua index 17f53d6..8da98e4 100644 --- a/default/home/.config/nvim/lua/plugins/example.lua +++ b/default/home/.config/nvim/lua/plugins/example.lua @@ -10,13 +10,17 @@ if true then return {} end -- * override the configuration of LazyVim plugins return { -- add gruvbox - { "ellisonleao/gruvbox.nvim" }, + -- { "ellisonleao/gruvbox.nvim" }, + { + "shaunsingh/seoul256.nvim", + }, -- Configure LazyVim to load gruvbox { "LazyVim/LazyVim", opts = { - colorscheme = "gruvbox", + colorscheme = "seoul256", + -- colorscheme = "gruvbox", }, },