1
Fork 0

feat: dynamic theming attempt

This commit is contained in:
Matei Adriel 2022-03-10 21:59:18 +02:00
parent 18c51ecc13
commit 2757c649b9
18 changed files with 120 additions and 30 deletions
dotfiles/neovim/lua/my

View file

@ -33,7 +33,7 @@ function M.setup()
helpers.global("mapleader", "<Space>")
-- Set theme
require('github-theme').setup({theme_style = "light", dark_float = true})
-- require('github-theme').setup({theme_style = "light", dark_float = true, transparent = true})
end
return M

View file

@ -2,7 +2,7 @@ local M = {}
function M.setup()
require('lualine').setup({
theme = "github",
theme = vim.g.lualineTheme,
-- Integration with other plugins
extensions = {"nvim-tree"}