updated colorscheme by installing base16 and adding bad ass colors ;)

This commit is contained in:
jjwoz 2024-04-01 17:40:09 -04:00
parent 614502d4e6
commit c4510e0634
1 changed files with 10 additions and 1 deletions

View File

@ -852,6 +852,14 @@ require('lazy').setup({
vim.cmd.hi 'Comment gui=none' vim.cmd.hi 'Comment gui=none'
end, end,
}, },
{
'RRethy/base16-nvim',
name = 'base16',
priority = 1000,
init = function()
vim.cmd.hi 'Comment gui=none'
end,
},
-- Highlight todo, notes, etc in comments -- Highlight todo, notes, etc in comments
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = true } }, { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = true } },
@ -964,7 +972,8 @@ require('lazy').setup({
}) })
-- NOTE: color scheme -- 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` -- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et -- vim: ts=2 sts=2 sw=2 et