This commit is contained in:
2026-03-09 14:35:57 +03:00
parent 4c0b8b54fc
commit fb02ba27dc
8 changed files with 169 additions and 0 deletions

View File

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