From f4c63a494a7387a5d23dfd6d7f06385b1868af6a Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Mon, 19 Jun 2023 11:40:19 -0400 Subject: [PATCH] ;( --- .../config/lazyvim/lua/config/autocmds.lua | 6 ----- .../config/lazyvim/lua/plugins/core.lua | 27 +++---------------- 2 files changed, 4 insertions(+), 29 deletions(-) diff --git a/homeConfig/modules/neovim/config/lazyvim/lua/config/autocmds.lua b/homeConfig/modules/neovim/config/lazyvim/lua/config/autocmds.lua index 2c352e9..0e150dc 100644 --- a/homeConfig/modules/neovim/config/lazyvim/lua/config/autocmds.lua +++ b/homeConfig/modules/neovim/config/lazyvim/lua/config/autocmds.lua @@ -79,12 +79,6 @@ cmp.setup({ -- other configurations... }) -require("lualine").setup({ - options = { - theme = "onedark", - }, -}) - cmp.setup({ enabled = function() -- disable completion in comments diff --git a/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua b/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua index 8b0fc22..47ff160 100644 --- a/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua +++ b/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua @@ -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, },