From 2a448369133c281402bc87cde7859f4bd8599bc0 Mon Sep 17 00:00:00 2001 From: Georgios Atheridis Date: Tue, 6 Sep 2022 20:18:25 +0300 Subject: [PATCH] updated colourscheme --- nvim/lua/nvim/colorscheme.lua | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/nvim/lua/nvim/colorscheme.lua b/nvim/lua/nvim/colorscheme.lua index 089fcf9..80d767d 100644 --- a/nvim/lua/nvim/colorscheme.lua +++ b/nvim/lua/nvim/colorscheme.lua @@ -1,18 +1,22 @@ --- local status_ok, onedark = pcall(require, "onedark") --- if not status_ok then --- vim.notify("Error with colorscheme") --- return --- end --- --- onedark.setup({ --- style = "deep", --- }) --- onedark.load() +local status_ok, onedark = pcall(require, "onedark") +if not status_ok then + vim.notify("Error with colorscheme") + return +end + +onedark.setup({ + style = "deep", +}) +onedark.load() -- vim.cmd('colorscheme paramount') -- --- vim.cmd('set termguicolors') --- vim.cmd('set background=light') +vim.cmd('set termguicolors') +vim.cmd('set background=dark') -- vim.cmd('colorscheme zenbones') -- -vim.cmd("colorscheme nofrils-acme") +-- vim.cmd("colorscheme nofrils-acme") + +-- vim.cmd("let g:nofrils_heavylinenumbers=1") +-- vim.cmd("let g:nofrils_strbackgrounds=1") +-- vim.cmd("let g:nofrils_heavycomments=1") -- 2.30.2