add ayu colorsheme

This commit is contained in:
James Dixon 2023-01-03 17:19:52 -05:00
parent b5c67f7a49
commit 08cd48f0b2
2 changed files with 4 additions and 2 deletions

View File

@ -73,4 +73,5 @@ require('packer').startup(function(use)
use 'w0ng/vim-hybrid'
use 'folke/tokyonight.nvim'
use 'bluz71/vim-nightfly-colors'
use 'Shatur/neovim-ayu'
end)

View File

@ -1,10 +1,11 @@
local ok, _ = pcall(vim.cmd, 'colorscheme tokyonight')
-- local ok, _ = pcall(vim.cmd, 'colorscheme tokyonight')
-- local ok, _ = pcall(vim.cmd, 'colorscheme tokyonight-storm')
-- local ok, _ = pcall(vim.cmd, 'colorscheme tokyonight-night')
-- local ok, _ = pcall(vim.cmd, 'colorscheme tokyonight-moon')
-- local ok, _ = pcall(vim.cmd, 'colorscheme nightfly')
local ok, _ = pcall(vim.cmd, 'colorscheme nightfly')
local ok, _ = pcall(vim.cmd, 'colorscheme ayu-dark')
if not ok then
vim.cmd 'colorscheme default' -- if the above fails, then use default
end