add tokyo-night colorscheme

This commit is contained in:
James Dixon 2023-01-03 16:22:08 -05:00
parent ff6a06497f
commit 6e5576e5d9
2 changed files with 6 additions and 3 deletions

View File

@ -71,5 +71,5 @@ require('packer').startup(function(use)
-- colorschemes -- colorschemes
-- use 'rose-pine/neovim' -- use 'rose-pine/neovim'
use 'w0ng/vim-hybrid' use 'w0ng/vim-hybrid'
use 'folke/tokyonight.nvim'
end) end)

View File

@ -1,4 +1,7 @@
local ok, _ = pcall(vim.cmd, 'colorscheme hybrid') 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')
if not ok then if not ok then
vim.cmd 'colorscheme delek' -- if the above fails, then use default vim.cmd 'colorscheme default' -- if the above fails, then use default
end end