neovim: add ayu colorscheme

This commit is contained in:
2022-08-21 00:24:25 +03:00
parent e6bab2da30
commit f1962f43d5
2 changed files with 10 additions and 1 deletions

View File

@@ -3,6 +3,6 @@ vim.api.nvim_set_hl(0, "SpellBad", {
}) })
vim.cmd([[ vim.cmd([[
colorscheme gruvbox-material colorscheme ayu
hi clear SignColumn hi clear SignColumn
]]) ]])

View File

@@ -21,11 +21,20 @@ 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" }, { "sainnhe/sonokai" },
{
"Shatur/neovim-ayu",
config = function()
require("ayu").setup({
mirage = true,
})
end,
},
}) })
-- Make commenting code great -- Make commenting code great