From 33ed266e2fe994c41bbc7e2860631a6c9554485b Mon Sep 17 00:00:00 2001 From: geremia Date: Thu, 1 Feb 2024 19:39:48 +0100 Subject: [PATCH] changed theme --- .gitignore | 1 + init.lua | 14 +++++--------- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index d699e1d6..ea93edad 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ tags test.sh .luarc.json nvim +lazy-lock.json diff --git a/init.lua b/init.lua index 6c6ae020..2d551721 100644 --- a/init.lua +++ b/init.lua @@ -190,16 +190,12 @@ require('lazy').setup({ }, { - -- Theme inspired by Atom - 'navarasu/onedark.nvim', - priority = 1000, - lazy = false, + -- Theme + 'projekt0n/github-nvim-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('onedark').setup { - -- Set a style preset. 'dark' is default. - style = 'dark', -- dark, darker, cool, deep, warm, warmer, light - } - require('onedark').load() + vim.cmd('colorscheme github_dark_dimmed') end, },