mirror of
https://github.com/runyanjake/dotfiles.git
synced 2025-10-04 21:57:30 -07:00
Fix colors
This commit is contained in:
parent
a93481d63f
commit
05dafa0296
@ -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
|
||||
|
21
lazyvim/lua/plugins/colorscheme.lua
Normal file
21
lazyvim/lua/plugins/colorscheme.lua
Normal 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",
|
||||
},
|
||||
},
|
||||
}
|
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user