changed theme

This commit is contained in:
geremia 2024-02-01 19:39:48 +01:00
parent c3ae716fb3
commit 33ed266e2f
2 changed files with 6 additions and 9 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@ tags
test.sh
.luarc.json
nvim
lazy-lock.json

View File

@ -190,16 +190,12 @@ require('lazy').setup({
},
{
-- Theme inspired by Atom
'navarasu/onedark.nvim',
priority = 1000,
lazy = false,
-- Theme
'projekt0n/github-nvim-theme',
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
require('onedark').setup {
-- Set a style preset. 'dark' is default.
style = 'dark', -- dark, darker, cool, deep, warm, warmer, light
}
require('onedark').load()
vim.cmd('colorscheme github_dark_dimmed')
end,
},