This commit is contained in:
Bryan Ramos 2023-06-19 11:40:19 -04:00
parent b984a37839
commit f4c63a494a
2 changed files with 4 additions and 29 deletions

View file

@ -79,12 +79,6 @@ cmp.setup({
-- other configurations...
})
require("lualine").setup({
options = {
theme = "onedark",
},
})
cmp.setup({
enabled = function()
-- disable completion in comments

View file

@ -1,34 +1,15 @@
return {
{
"projekt0n/github-nvim-theme",
"olimorris/onedarkpro.nvim",
lazy = false,
priority = 1000,
config = function()
require("github-theme").setup({
require("onedarkpro").setup({
options = {
transparent = true,
},
styles = { -- Style to be applied to different syntax groups
comments = "NONE", -- Value is any valid attr-list value `:help attr-list`
functions = "italic",
keywords = "bold",
variables = "NONE",
conditionals = "NONE",
constants = "NONE",
numbers = "NONE",
operators = "NONE",
strings = "NONE",
types = "NONE",
},
darken = { -- Darken floating windows and sidebar-like windows
floats = true,
sidebars = {
enable = true,
list = {}, -- Apply dark background to specific windows
},
transparency = true,
},
})
vim.cmd("colorscheme github_dark")
vim.cmd("colorscheme onedark_dark")
end,
},