From 4832f5433853f4be8b1f5262adb68304609f69df Mon Sep 17 00:00:00 2001 From: asep komarudin Date: Sat, 9 Mar 2024 22:23:41 +0700 Subject: [PATCH] add: update config --- lazy-lock.json | 2 +- lua/custom/plugins/bufferline.lua | 8 ++++---- lua/plugins/colorscheme.lua | 6 +++++- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/lazy-lock.json b/lazy-lock.json index 8a70f6c..058b5b2 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -11,6 +11,7 @@ "cmp_luasnip": { "branch": "master", "commit": "05a9ab28b53f71d1aece421ef32fee2cb857a843" }, "code_runner.nvim": { "branch": "main", "commit": "0c701cae3265c79b4fdfd4b35a4f3d7c5986d46c" }, "codeium.vim": { "branch": "main", "commit": "5b8f68d5c0e32ae97d073a56ff14dba5646ec223" }, + "dracula.nvim": { "branch": "main", "commit": "8d8bddb8814c3e7e62d80dda65a9876f97eb699c" }, "dressing.nvim": { "branch": "master", "commit": "42d767b04c50a6966c9633e3968bc65c0c2f2bfc" }, "friendly-snippets": { "branch": "main", "commit": "dcd4a586439a1c81357d5b9d26319ae218cc9479" }, "gitsigns.nvim": { "branch": "main", "commit": "6ef8c54fb526bf3a0bc4efb0b2fe8e6d9a7daed2" }, @@ -47,7 +48,6 @@ "smart-splits.nvim": { "branch": "master", "commit": "f6fcb79527872e9330c554915af2ca511c388390" }, "telescope.nvim": { "branch": "master", "commit": "7472420f8734c710bd7009081cef9b97f08a3821" }, "toggleterm.nvim": { "branch": "main", "commit": "193786e0371e3286d3bc9aa0079da1cd41beaa62" }, - "tokyonight.nvim": { "branch": "main", "commit": "67c6050e1ca41260c919236a098ba278472c7520" }, "vim-illuminate": { "branch": "master", "commit": "305bf07b919ac526deb5193280379e2f8b599926" }, "vim-startuptime": { "branch": "master", "commit": "97a88e688482a09c3c4b777d07b509b328a5ec29" }, "vim-visual-multi": { "branch": "master", "commit": "1c9207b28c8898ab01b54e6d6b61b0b820a814bc" }, diff --git a/lua/custom/plugins/bufferline.lua b/lua/custom/plugins/bufferline.lua index e107c8e..27b0789 100644 --- a/lua/custom/plugins/bufferline.lua +++ b/lua/custom/plugins/bufferline.lua @@ -87,19 +87,19 @@ return { highlights = { background = { fg = { attribute = "fg", highlight = "TabLine" }, - bg = { attribute = "bg", highlight = "TabLine" }, + bg = { attribute = "none", highlight = "TabLine" }, }, buffer_visible = { fg = { attribute = "fg", highlight = "TabLine" }, - bg = { attribute = "bg", highlight = "TabLine" }, + bg = { attribute = "none", highlight = "TabLine" }, }, close_button = { fg = { attribute = "fg", highlight = "TabLine" }, - bg = { attribute = "bg", highlight = "TabLine" }, + bg = { attribute = "none", highlight = "TabLine" }, }, close_button_visible = { fg = { attribute = "fg", highlight = "TabLine" }, - bg = { attribute = "bg", highlight = "TabLine" }, + bg = { attribute = "none", highlight = "TabLine" }, }, tab_selected = { fg = { attribute = "fg", highlight = "Normal" }, diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua index ca0ce89..accf883 100644 --- a/lua/plugins/colorscheme.lua +++ b/lua/plugins/colorscheme.lua @@ -235,7 +235,7 @@ return { italic_comment = true, lualine_bg_color = colors.bg, overrides = { - NvimTreeFolderIcon = { fg = "#FCC76A" }, + NvimTreeFolderIcon = { fg = "#6776a7" }, CmpItemAbbr = { fg = "#ABB2BF" }, CmpItemKind = { fg = "#ABB2BF" }, CmpItemAbbrDeprecated = { fg = "#ABB2BF" }, @@ -340,9 +340,13 @@ return { require("onedark").setup({ term_colors = true, style = onedark_style, + colors = { + bg_d = "$bg", + }, highlights = { -- NvimTreeFolderIcon = { fg = "#FCC76A" }, BufferLineFill = { bg = "$bg0" }, + BufferLineUnfocusedFill = { bg = "$bg0" }, StatusLine = { fg = "#f8f8f2", bg = "$bg0" }, StatusLineTerm = { fg = "#f8f8f2", bg = "$bg0" }, illuminatedWord = { bg = "#3b4261" },