From 590af61a7fe4298206d92999f4b3fc98494b5bf6 Mon Sep 17 00:00:00 2001 From: Titus Moore Date: Fri, 3 Nov 2023 18:43:21 -0400 Subject: [PATCH] Added new theme I think? --- init.lua | 11 +++++++++++ lua/custom/plugins/init.lua | 5 +++++ 2 files changed, 16 insertions(+) diff --git a/init.lua b/init.lua index baaae677..2e89a693 100644 --- a/init.lua +++ b/init.lua @@ -138,6 +138,11 @@ require('lazy').setup({ }, }, + -- I want to be able to use this, TODO resolve + -- { + -- "nyoom-engineering/oxocarbon.nvim" + -- }, + { -- Theme inspired by Atom 'navarasu/onedark.nvim', @@ -220,6 +225,12 @@ require('lazy').setup({ { import = 'custom.plugins' }, }, {}) +-- Configure Glow +require('glow').setup({ + style = 'dark', + install_path = os.getenv("GLOW_PATH") +}) + -- [[ Setting options ]] -- See `:help vim.o` -- NOTE: You can change these options as you wish! diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index 4ccc6fc1..143fbe19 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -23,5 +23,10 @@ return { }, { 'ThePrimeagen/harpoon' + }, + { + "ellisonleao/glow.nvim", + config = true, + cmd = "Glow" } }