Add colorschemes

This commit is contained in:
pro100ton 2025-01-31 22:22:17 +03:00
parent 6c1e628a40
commit 77b3d15322
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,9 @@
-- Turn on termguicolors for colorschemes
-- (Have to use true color terminal to see theese setting work)
vim.opt.termguicolors = true
vim.opt.background = "dark" -- colorschemes that can be light or dark will be made dark
vim.opt.signcolumn = "yes" -- show sigh columns so that text doesn't shift
vim.g.gruvbox_material_background = 'hard'
vim.g.gruvbox_material_enable_italic = true
vim.cmd.colorscheme("gruvbox-material")

View file

@ -0,0 +1,19 @@
return {
"folke/tokyonight.nvim",
dependencies = {
"ellisonleao/gruvbox.nvim",
-- "morphez/gruvbox.nvim",
"sainnhe/everforest",
"sainnhe/gruvbox-material",
"rebelot/kanagawa.nvim",
"catppuccin/nvim",
"folke/tokyonight.nvim",
"luisiacc/gruvbox-baby",
},
lazy = false,
priority = 1000,
config = function()
require "custom/colorschemes"
end,
}