this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[nvim] remove transparency on graphical applications

+6 -2
+6 -2
nvim/lua/core/colorscheme.lua
··· 1 1 -- Tokyonight config 2 + 2 3 vim.g.tokyonight_style = "night" 3 - vim.g.tokyonight_transparent = true 4 - vim.g.tokyonight_transparent_sidebar = true 4 + -- Add transparent in graphical applications 5 + if vim.cmd("echo $TERM") ~= "" then 6 + vim.g.tokyonight_transparent = true 7 + vim.g.tokyonight_transparent_sidebar = true 8 + end 5 9 6 10 local colorscheme = "tokyonight" 7 11