neovim: remove sonokai and ayu colorschemes

This commit is contained in:
2022-08-30 21:49:32 +03:00
parent b544bd8b60
commit 7a1e6824e3
2 changed files with 2 additions and 20 deletions

View File

@@ -2,13 +2,7 @@ vim.api.nvim_set_hl(0, "SpellBad", {
fg = "red", fg = "red",
}) })
local env = vim.fn.environ()
if env["TMUX"] then
vim.cmd("colorscheme gruvbox-material")
else
vim.cmd("colorscheme ayu")
end
vim.cmd([[ vim.cmd([[
colorscheme gruvbox-material
hi clear SignColumn hi clear SignColumn
]]) ]])

View File

@@ -21,21 +21,9 @@ require("packer").startup(function(use)
use({ "nvim-lua/popup.nvim" }) use({ "nvim-lua/popup.nvim" })
use({ "nvim-lua/plenary.nvim" }) use({ "nvim-lua/plenary.nvim" })
use({ "folke/lua-dev.nvim" }) use({ "folke/lua-dev.nvim" })
use({ "tjdevries/colorbuddy.vim" })
-- Colorschemes go here -- Colorschemes go here
use({ use({ "sainnhe/gruvbox-material" })
{ "sainnhe/gruvbox-material" },
{ "sainnhe/sonokai" },
{
"Shatur/neovim-ayu",
config = function()
require("ayu").setup({
mirage = true,
})
end,
},
})
-- Make commenting code great -- Make commenting code great
use({ "numToStr/Comment.nvim" }) use({ "numToStr/Comment.nvim" })