Files
neovim-config/lua/plugins/themes.lua
T
rootiest a2ee0c6617 🚀feat!: Add astral.nvim
- Remove rootiest.nvim plugin
- Implements astral.nvim
2024-07-26 14:06:08 -04:00

100 lines
2.3 KiB
Lua

-- -----------------------------------------------------------------------------
-- --------------------------------- THEMES ------------------------------------
-- -----------------------------------------------------------------------------
local astral = require("astral")
return {
-- ----------------------- Themes --------------------------
{ -- Tokyonight
"folke/tokyonight.nvim",
lazy = false, -- Override
},
{ -- Catppuccin
"catppuccin/nvim",
lazy = false, -- Override
integrations = {
indent_blankline = {
enabled = true,
scope_color = "lavender",
colored_indent_levels = false,
},
},
},
{ -- Ayu
"Shatur/neovim-ayu",
},
{ -- Dracula
"Mofiqul/dracula.nvim",
},
{ -- Eldritch
"eldritch-theme/eldritch.nvim",
},
{ -- Github-theme
"projekt0n/github-nvim-theme",
},
{ -- Gruvbox
"ellisonleao/gruvbox.nvim",
},
{ -- Kanagawa
"rebelot/kanagawa.nvim",
},
{ -- Monochrome
"kdheepak/monochrome.nvim",
},
{ -- NeoFusion
"diegoulloao/neofusion.nvim",
},
{ -- Nord
"shaunsingh/nord.nvim",
},
{ -- One Dark Pro
"olimorris/onedarkpro.nvim",
},
{ -- Oxocarbon
"nyoom-engineering/oxocarbon.nvim",
},
{ -- Paper
"https://gitlab.com/yorickpeterse/vim-paper.git",
},
{ -- Rose-Pine
"rose-pine/neovim",
name = "rose-pine",
},
{ -- Umbra
"LZDQ/umbra.nvim",
},
{ -- Zenbones
"zenbones-theme/zenbones.nvim",
dependencies = { "rktjmp/lush.nvim" },
},
-- ---------------------- Utilities ------------------------
{ -- Transparent
"xiyaowong/transparent.nvim",
lazy = true,
config = true,
},
{ -- Auto Dark Mode
"f-person/auto-dark-mode.nvim",
lazy = true,
opts = {
update_interval = 2000,
set_dark_mode = function()
vim.o.background = "dark"
vim.cmd.colorscheme(
astral.colortheme or "catppuccin-frappe" or "tokyonight"
)
end,
set_light_mode = function()
vim.o.background = "light"
vim.cmd.colorscheme(
astral.colortheme or "catppuccin-latte" or "tokyonight-day"
)
end,
},
cond = function() -- Not Using SSH
local ssh = os.getenv("SSH_TTY") or false
return not ssh
end,
},
}