Make modal windows solid instead of transparent
This commit is contained in:
parent
63d1208678
commit
a541a5eb51
2 changed files with 19 additions and 18 deletions
|
@ -1,6 +1,6 @@
|
||||||
return {
|
return {
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
tag="v1.8.0",
|
tag = "v1.8.0",
|
||||||
config = function()
|
config = function()
|
||||||
local lspconfig = require("lspconfig")
|
local lspconfig = require("lspconfig")
|
||||||
lspconfig.lua_ls.setup({})
|
lspconfig.lua_ls.setup({})
|
||||||
|
@ -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,
|
||||||
}
|
}
|
||||||
|
|
|
@ -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")
|
||||||
end,
|
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "#0d1117" })
|
||||||
}
|
end,
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue