summary refs log tree commit diff
path: root/.vim/lua
diff options
context:
space:
mode:
Diffstat (limited to '.vim/lua')
-rw-r--r--.vim/lua/plugins.lua12
1 files changed, 10 insertions, 2 deletions
diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua
index e9ada46..404cf55 100644
--- a/.vim/lua/plugins.lua
+++ b/.vim/lua/plugins.lua
@@ -1265,18 +1265,26 @@ require('packer').startup({function()
     config = function()
     end} -- }}}
 
-  use {'yorik1984/newpaper.nvim', -- {{{
+  use {'yorik1984/newpaper.nvim', disable = true, -- {{{
     config = function()
       if vim.g.night_and_day == 'day' then
         require('newpaper').setup()
       end
     end} -- }}}
 
+  use {'nyoom-engineering/oxocarbon.nvim', disable = false, -- {{{
+    config = function()
+      if vim.g.night_and_day == 'day' then
+        vim.opt.background = 'light'
+        vim.cmd.colorscheme 'oxocarbon'
+      end
+    end} -- }}}
+
   use {'https://git.sr.ht/~robertgzr/karafuru', rtp = 'vim', -- {{{
     run = 'make colorscheme',
     config = function()
       if not vim.g.night_and_day or vim.g.night_and_day == 'night' then
-        vim.cmd [[colorscheme karafuru]]
+        vim.cmd.colorscheme "karafuru"
       end
     end} -- }}}