Files
Rabbit-dots/nvim/.config/nvim/lua/plugins/theme.lua
2026-03-09 14:35:57 +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
}
}