This commit is contained in:
Bryan Ramos 2023-06-11 19:24:24 -04:00
parent 51f32c5166
commit f630724532
3 changed files with 5 additions and 3 deletions

View file

@ -9,12 +9,12 @@
};
window = {
opacity = 0.95;
opacity = 0.85;
};
colors = {
primary = {
background = "#0d1117";
background = "#000000";
foreground = "#cdd6f4";
};

View file

@ -1,6 +1,8 @@
-- Autocmds are automatically loaded on the VeryLazy event
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua
-- Add any additional autocmds here
--
vim.cmd([[highlight Normal guibg=NONE ctermbg=NONE]])
local lsp = require("lsp-zero").preset({})

View file

@ -5,7 +5,7 @@ return {
priority = 1000,
config = function()
require("github-theme").setup({
options = {
opts = {
transparent = true,
},
})