nvim: use tokyonight theme

lualine uses `auto` by default, inheriting the global theme.
This commit is contained in:
Benedikt Heine 2026-01-25 05:50:59 +01:00 committed by Felix Buehler
parent b7b95357db
commit f9291a2aaf
5 changed files with 10 additions and 16 deletions

View file

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