From ddbd400c88d4959e387cb7980dd0b3a21132c57c Mon Sep 17 00:00:00 2001 From: weygoldt <88969563+weygoldt@users.noreply.github.com> Date: Thu, 12 Dec 2024 15:35:22 +0100 Subject: [PATCH] added light github theme --- lua/custom/plugins/github-nvim-theme.lua | 13 +++++++++++++ .../plugins/{rose-pine.lua => rose-pine-theme.lua} | 0 2 files changed, 13 insertions(+) create mode 100644 lua/custom/plugins/github-nvim-theme.lua rename lua/custom/plugins/{rose-pine.lua => rose-pine-theme.lua} (100%) diff --git a/lua/custom/plugins/github-nvim-theme.lua b/lua/custom/plugins/github-nvim-theme.lua new file mode 100644 index 00000000..6f491d85 --- /dev/null +++ b/lua/custom/plugins/github-nvim-theme.lua @@ -0,0 +1,13 @@ +return { + 'projekt0n/github-nvim-theme', + name = 'github-theme', + lazy = false, -- make sure we load this during startup if it is your main colorscheme + priority = 1000, -- make sure to load this before all the other start plugins + config = function() + require('github-theme').setup { + -- ... + } + + vim.cmd 'colorscheme github_dark' + end, +} diff --git a/lua/custom/plugins/rose-pine.lua b/lua/custom/plugins/rose-pine-theme.lua similarity index 100% rename from lua/custom/plugins/rose-pine.lua rename to lua/custom/plugins/rose-pine-theme.lua