Files
Rabbit-dots/.config/nvim/lua/plugins/theme.lua
2026-02-21 22:43:41 +03:00

15 lines
212 B
Lua

return {
{
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {},
config = function()
if os.getenv("TERM") ~= "linux" then
vim.cmd.colorscheme("tokyonight-storm")
end
end
}
}