Fix colors

This commit is contained in:
whitney 2024-09-10 16:49:32 -07:00
parent a93481d63f
commit 05dafa0296
3 changed files with 21 additions and 19 deletions

View File

@ -30,7 +30,6 @@ require("lazy").setup({
version = false, -- always use the latest git commit
-- version = "*", -- try installing the latest stable version for plugins that support semver
},
install = { colorscheme = { "tokyonight", "habamax" } },
checker = {
enabled = true, -- check for plugin updates periodically
notify = false, -- notify on update

View File

@ -0,0 +1,21 @@
return {
-- Tokyo Night Theme
{
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {},
},
-- Catppuccin theme
{
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "catppuccin-macchiato",
},
},
}

View File

@ -1,22 +1,4 @@
return {
-- Add the Gruvbox colorscheme
{
"ellisonleao/gruvbox.nvim",
priority = 1000, -- Ensure Gruvbox loads first
config = function()
vim.cmd("colorscheme gruvbox") -- Set Gruvbox as the default colorscheme
end,
},
-- VimTeX
{
"lervag/vimtex",
ft = { "tex" }, -- Only load VimTeX for LaTeX files
config = function()
-- Add VimTeX-specific settings
vim.g.vimtex_view_method = "zathura"
vim.g.vimtex_compiler_method = "latexmk"
end,
},
-- add more treesitter parsers
{
"nvim-treesitter/nvim-treesitter",