move colors to init.lua
This commit is contained in:
parent
edf12cd9ef
commit
509080c35b
|
@ -11,8 +11,12 @@ require("clint") -- loads lua/clint/init.lua
|
|||
require("lazy").setup(
|
||||
{
|
||||
spec = "plugins",
|
||||
install = { colorscheme = { "gruvbox", } }
|
||||
install = { colorscheme = { "gruvbox", "ayu", "melange", } }
|
||||
}
|
||||
) -- loads each lua/plugin/*
|
||||
|
||||
require('dap-python').setup('~/.virtualenvs/debugpy/bin/python')
|
||||
|
||||
vim.opt.termguicolors = true
|
||||
vim.cmd.colorscheme 'melange'
|
||||
|
||||
|
|
|
@ -36,6 +36,8 @@ return {
|
|||
-- Color schemes
|
||||
--------------------
|
||||
|
||||
{ "glepnir/oceanic-material" },
|
||||
{ "savq/melange-nvim" },
|
||||
{ 'ayu-theme/ayu-vim' },
|
||||
-- { 'morhetz/gruvbox' },
|
||||
{ 'ellisonleao/gruvbox.nvim' },
|
||||
|
@ -44,7 +46,6 @@ return {
|
|||
{ 'rainux/vim-desert-warm-256' },
|
||||
{ 'ajmwagar/vim-deus' },
|
||||
{ "rebelot/kanagawa.nvim" },
|
||||
{ "glepnir/oceanic-material" },
|
||||
|
||||
--------------------
|
||||
-- Utility
|
||||
|
|
Loading…
Reference in New Issue