Make modal windows solid instead of transparent

This commit is contained in:
Daniel McKnight 2025-05-21 17:38:36 -07:00
parent 63d1208678
commit a541a5eb51
2 changed files with 19 additions and 18 deletions

View file

@ -11,8 +11,8 @@ return {
lspconfig.nginx_language_server.setup({}) lspconfig.nginx_language_server.setup({})
lspconfig.ruff.setup({}) lspconfig.ruff.setup({})
lspconfig.yamlls.setup({}) lspconfig.yamlls.setup({})
vim.keymap.set('n', '<leader>d', vim.lsp.buf.hover, {desc="Show Docstring"}) vim.keymap.set("n", "<leader>d", vim.lsp.buf.hover, { desc = "Show Docstring" })
vim.keymap.set('n', '<leader>gt', vim.lsp.buf.definition, {desc="Go To Definition"}) vim.keymap.set("n", "<leader>gt", vim.lsp.buf.definition, { desc = "Go To Definition" })
vim.keymap.set('n', '<leader>ca', vim.lsp.buf.code_action, {desc="Show Code Actions"}) vim.keymap.set("n", "<leader>ca", vim.lsp.buf.code_action, { desc = "Show Code Actions" })
end end,
} }

View file

@ -1,14 +1,15 @@
return { return {
'projekt0n/github-nvim-theme', "projekt0n/github-nvim-theme",
name = 'github-theme', name = "github-theme",
lazy = false, -- make sure we load this during startup if it is your main colorscheme lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins priority = 1000, -- make sure to load this before all the other start plugins
config = function() config = function()
require('github-theme').setup({ require("github-theme").setup({
options = { options = {
transparent = true transparent = true,
} },
}) })
vim.cmd('colorscheme github_dark_default') vim.cmd("colorscheme github_dark_default")
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "#0d1117" })
end, end,
} }