dotfiles/nvim/lua/plugins/tokyonight.lua
Benedikt Heine f9291a2aaf nvim: use tokyonight theme
lualine uses `auto` by default, inheriting the global theme.
2026-01-27 00:23:54 +01:00

8 lines
147 B
Lua

return {
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
config = function()
vim.cmd([[colorscheme tokyonight-moon]])
end,
}