Add colorschemes
This commit is contained in:
parent
6c1e628a40
commit
77b3d15322
2 changed files with 28 additions and 0 deletions
9
lua/custom/colorschemes.lua
Normal file
9
lua/custom/colorschemes.lua
Normal 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")
|
19
lua/custom/plugins/colorschemes.lua
Normal file
19
lua/custom/plugins/colorschemes.lua
Normal 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,
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue