nvim themes

This commit is contained in:
Henrik Bakken
2025-04-20 21:16:56 +02:00
parent 9085969edf
commit 55b386244b
+8 -4
View File
@@ -26,6 +26,11 @@ vim.opt.diffopt:append("linematch:60") -- second stage diff to align lines
vim.opt.diffopt:append("hiddenoff") vim.opt.diffopt:append("hiddenoff")
vim.opt.diffopt:append("vertical") vim.opt.diffopt:append("vertical")
vim.opt.diffopt:append("algorithm:histogram") vim.opt.diffopt:append("algorithm:histogram")
vim.opt.wildignore:append(
"blue.vim,darkblue.vim,delek.vim,desert.vim,elflord.vim,evening.vim,habamax.vim,industry.vim,"
.. "koehler.vim,lunaperche.vim,morning.vim,murphy.vim,pablo.vim,peachpuff.vim,quiet.vim,retrobox.vim,ron.vim,"
.. "shine.vim,slate.vim,sorbet.vim,torte.vim,unokai.vim,vim.lua,wildcharm.vim,zaibatsu.vim,zellner.vim"
)
-- File History -- File History
vim.o.undofile = true vim.o.undofile = true
@@ -334,13 +339,13 @@ local function makespecs_themes()
"NLKNguyen/papercolor-theme", "NLKNguyen/papercolor-theme",
"junegunn/seoul256.vim", "junegunn/seoul256.vim",
"mcauley-penney/phobos-anomaly.nvim", "mcauley-penney/phobos-anomaly.nvim",
"folke/tokyonight.nvim",
{ "bluz71/vim-moonfly-colors", name = "moonfly", lazy = false }, { "bluz71/vim-moonfly-colors", name = "moonfly", lazy = false },
{ {
"uloco/bluloco.nvim", "uloco/bluloco.nvim",
lazy = false, lazy = false,
dependencies = { "rktjmp/lush.nvim" }, dependencies = { "rktjmp/lush.nvim" },
opts = {}, opts = {},
config = function() vim.cmd("colorscheme bluloco") end,
}, },
{ {
"mhartington/oceanic-next", "mhartington/oceanic-next",
@@ -363,9 +368,8 @@ local function makespecs_themes()
"morhetz/gruvbox", "morhetz/gruvbox",
{ {
"catppuccin/nvim", "catppuccin/nvim",
lazy = false,
name = "catppuccin", name = "catppuccin",
priority = 1000, -- opts = { integrations = { grug_far = true, mason = true, noice = true, snacks = true, which_key = true } },
}, },
{ {
"Shatur/neovim-ayu", "Shatur/neovim-ayu",
@@ -1541,6 +1545,6 @@ end
vim.opt.rtp:prepend(lazypath) vim.opt.rtp:prepend(lazypath)
require("lazy").setup({ require("lazy").setup({
spec = lazyspecs, spec = lazyspecs,
install = { colorscheme = { "habamax" } },
checker = { enabled = true }, checker = { enabled = true },
}) })
vim.cmd("colorscheme bluloco-dark")