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(
|
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'
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue