move colors to init.lua

This commit is contained in:
cmccay 2023-01-26 09:24:31 -06:00
parent edf12cd9ef
commit 509080c35b
2 changed files with 7 additions and 2 deletions

View File

@ -11,8 +11,12 @@ require("clint") -- loads lua/clint/init.lua
require("lazy").setup( require("lazy").setup(
{ {
spec = "plugins", spec = "plugins",
install = { colorscheme = { "gruvbox", } } install = { colorscheme = { "gruvbox", "ayu", "melange", } }
} }
) -- loads each lua/plugin/* ) -- loads each lua/plugin/*
require('dap-python').setup('~/.virtualenvs/debugpy/bin/python') require('dap-python').setup('~/.virtualenvs/debugpy/bin/python')
vim.opt.termguicolors = true
vim.cmd.colorscheme 'melange'

View File

@ -36,6 +36,8 @@ return {
-- Color schemes -- Color schemes
-------------------- --------------------
{ "glepnir/oceanic-material" },
{ "savq/melange-nvim" },
{ 'ayu-theme/ayu-vim' }, { 'ayu-theme/ayu-vim' },
-- { 'morhetz/gruvbox' }, -- { 'morhetz/gruvbox' },
{ 'ellisonleao/gruvbox.nvim' }, { 'ellisonleao/gruvbox.nvim' },
@ -44,7 +46,6 @@ return {
{ 'rainux/vim-desert-warm-256' }, { 'rainux/vim-desert-warm-256' },
{ 'ajmwagar/vim-deus' }, { 'ajmwagar/vim-deus' },
{ "rebelot/kanagawa.nvim" }, { "rebelot/kanagawa.nvim" },
{ "glepnir/oceanic-material" },
-------------------- --------------------
-- Utility -- Utility