adding additional plugins

This commit is contained in:
gregladden 2024-01-18 22:58:38 -06:00
parent 062688e12a
commit 723a3213d4
2 changed files with 15 additions and 14 deletions

8
lua/plugins/theme.lua Normal file
View file

@ -0,0 +1,8 @@
return {
-- Theme inspired by Atom
'navarasu/onedark.nvim',
priority = 1000,
config = function()
vim.cmd.colorscheme 'onedark'
end,
}