From 7f5567ddfaa17ddfd3692767b7341b1d2844ea87 Mon Sep 17 00:00:00 2001 From: Robert Claypool Date: Sun, 19 Mar 2023 18:01:43 -0500 Subject: [PATCH] Change colorscheme to nightfly --- init.lua | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/init.lua b/init.lua index 72890326..6bc90f35 100644 --- a/init.lua +++ b/init.lua @@ -112,11 +112,12 @@ require('lazy').setup({ }, }, - { -- Theme inspired by Atom - 'navarasu/onedark.nvim', + { + "bluz71/vim-nightfly-colors", priority = 1000, + name = "nightfly", config = function() - vim.cmd.colorscheme 'onedark' + vim.cmd.colorscheme 'nightfly' end, }, @@ -126,7 +127,7 @@ require('lazy').setup({ opts = { options = { icons_enabled = false, - theme = 'onedark', + theme = 'nightfly', component_separators = '|', section_separators = '', },