mirror of
https://github.com/arkorty/Neolite.git
synced 2026-03-18 00:57:12 +00:00
style: add Monokai Charcoal colorscheme
This commit is contained in:
@@ -27,6 +27,7 @@ local plugins = {
|
|||||||
vim.cmd("colorscheme hardhacker")
|
vim.cmd("colorscheme hardhacker")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{ "arkorty/monokai.nvim" },
|
||||||
{ "ellisonleao/gruvbox.nvim", priority = 1000, config = true },
|
{ "ellisonleao/gruvbox.nvim", priority = 1000, config = true },
|
||||||
{
|
{
|
||||||
"navarasu/onedark.nvim",
|
"navarasu/onedark.nvim",
|
||||||
@@ -62,7 +63,7 @@ local plugins = {
|
|||||||
-- UI
|
-- UI
|
||||||
{ "folke/zen-mode.nvim" },
|
{ "folke/zen-mode.nvim" },
|
||||||
{ "nvim-lualine/lualine.nvim" },
|
{ "nvim-lualine/lualine.nvim" },
|
||||||
{ "stevearc/dressing.nvim", event = "VeryLazy" },
|
{ "stevearc/dressing.nvim", event = "VeryLazy" },
|
||||||
{
|
{
|
||||||
"akinsho/bufferline.nvim",
|
"akinsho/bufferline.nvim",
|
||||||
version = "*",
|
version = "*",
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
local ok, _ = pcall(require, "gruvbox")
|
local ok, _ = pcall(require, "monokai")
|
||||||
if not ok then
|
if not ok then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
-- setup must be called before loading
|
-- setup must be called before loading
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
vim.cmd.colorscheme("gruvbox")
|
vim.cmd.colorscheme("monokai_charcoal")
|
||||||
|
|||||||
Reference in New Issue
Block a user