From c4510e0634b79dcd94d0c3adb78b3992468bfeea Mon Sep 17 00:00:00 2001 From: jjwoz Date: Mon, 1 Apr 2024 17:40:09 -0400 Subject: [PATCH] updated colorscheme by installing base16 and adding bad ass colors ;) --- init.lua | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index a2030289..cf120147 100644 --- a/init.lua +++ b/init.lua @@ -852,6 +852,14 @@ require('lazy').setup({ vim.cmd.hi 'Comment gui=none' end, }, + { + 'RRethy/base16-nvim', + name = 'base16', + priority = 1000, + init = function() + vim.cmd.hi 'Comment gui=none' + end, + }, -- Highlight todo, notes, etc in comments { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = true } }, @@ -964,7 +972,8 @@ require('lazy').setup({ }) -- NOTE: color scheme -vim.cmd.colorscheme 'gruvbox-baby' +-- vim.cmd.colorscheme 'gruvbox-baby' +vim.cmd.colorscheme 'base16-gruvbox-material-dark-hard' -- The line beneath this is called `modeline`. See `:help modeline` -- vim: ts=2 sts=2 sw=2 et