add nightfly colorscheme

This commit is contained in:
James Dixon 2023-01-03 16:25:08 -05:00
parent 6e5576e5d9
commit b5c67f7a49
2 changed files with 4 additions and 0 deletions

View File

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

View File

@ -2,6 +2,9 @@ local ok, _ = pcall(vim.cmd, 'colorscheme tokyonight')
-- local ok, _ = pcall(vim.cmd, 'colorscheme tokyonight-storm') -- local ok, _ = pcall(vim.cmd, 'colorscheme tokyonight-storm')
-- local ok, _ = pcall(vim.cmd, 'colorscheme tokyonight-night') -- local ok, _ = pcall(vim.cmd, 'colorscheme tokyonight-night')
-- local ok, _ = pcall(vim.cmd, 'colorscheme tokyonight-moon') -- local ok, _ = pcall(vim.cmd, 'colorscheme tokyonight-moon')
local ok, _ = pcall(vim.cmd, 'colorscheme nightfly')
if not ok then if not ok then
vim.cmd 'colorscheme default' -- if the above fails, then use default vim.cmd 'colorscheme default' -- if the above fails, then use default
end end