fixing configs
This commit is contained in:
@@ -14,8 +14,8 @@ return {
|
||||
orange = "#d19a66",
|
||||
red = "#e06c75",
|
||||
yellow = "#e5c07b",
|
||||
fg = "#98c379", -- Bright green for better visibility
|
||||
fg_dim = "#7ec8e3", -- Light blue for secondary text
|
||||
fg = "#98c379", -- Bright green for better visibility
|
||||
fg_dim = "#7ec8e3", -- Light blue for secondary text
|
||||
bg = "#282c34",
|
||||
bg_dark = "#21252b",
|
||||
white = "#ffffff",
|
||||
@@ -25,34 +25,34 @@ return {
|
||||
-- P10k rainbow style theme with solid backgrounds
|
||||
local theme = {
|
||||
normal = {
|
||||
a = { bg = colors.blue, fg = colors.black, gui = "bold" },
|
||||
a = { bg = colors.blue, fg = colors.white, gui = "bold" },
|
||||
b = { bg = colors.bg, fg = colors.cyan },
|
||||
c = { bg = colors.bg_dark, fg = colors.green },
|
||||
z = { bg = colors.blue, fg = colors.black, gui = "bold" },
|
||||
z = { bg = colors.blue, fg = colors.white, gui = "bold" },
|
||||
},
|
||||
insert = {
|
||||
a = { bg = colors.green, fg = colors.black, gui = "bold" },
|
||||
a = { bg = colors.green, fg = colors.white, gui = "bold" },
|
||||
b = { bg = colors.bg, fg = colors.cyan },
|
||||
c = { bg = colors.bg_dark, fg = colors.green },
|
||||
z = { bg = colors.green, fg = colors.black, gui = "bold" },
|
||||
z = { bg = colors.green, fg = colors.white, gui = "bold" },
|
||||
},
|
||||
visual = {
|
||||
a = { bg = colors.magenta, fg = colors.black, gui = "bold" },
|
||||
a = { bg = colors.magenta, fg = colors.white, gui = "bold" },
|
||||
b = { bg = colors.bg, fg = colors.cyan },
|
||||
c = { bg = colors.bg_dark, fg = colors.green },
|
||||
z = { bg = colors.magenta, fg = colors.black, gui = "bold" },
|
||||
z = { bg = colors.magenta, fg = colors.white, gui = "bold" },
|
||||
},
|
||||
command = {
|
||||
a = { bg = colors.yellow, fg = colors.black, gui = "bold" },
|
||||
a = { bg = colors.yellow, fg = colors.white, gui = "bold" },
|
||||
b = { bg = colors.bg, fg = colors.cyan },
|
||||
c = { bg = colors.bg_dark, fg = colors.green },
|
||||
z = { bg = colors.yellow, fg = colors.black, gui = "bold" },
|
||||
z = { bg = colors.yellow, fg = colors.white, gui = "bold" },
|
||||
},
|
||||
replace = {
|
||||
a = { bg = colors.red, fg = colors.black, gui = "bold" },
|
||||
a = { bg = colors.red, fg = colors.white, gui = "bold" },
|
||||
b = { bg = colors.bg, fg = colors.cyan },
|
||||
c = { bg = colors.bg_dark, fg = colors.green },
|
||||
z = { bg = colors.red, fg = colors.black, gui = "bold" },
|
||||
z = { bg = colors.red, fg = colors.white, gui = "bold" },
|
||||
},
|
||||
inactive = {
|
||||
a = { bg = colors.bg_dark, fg = colors.cyan },
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
return {
|
||||
"nvim-tree/nvim-tree.lua",
|
||||
dependencies = "nvim-tree/nvim-web-devicons",
|
||||
dependencies = "ryanoasis/vim-devicons",
|
||||
config = function()
|
||||
local nvimtree = require("nvim-tree")
|
||||
|
||||
|
||||
@@ -32,10 +32,11 @@ return {
|
||||
{ "<leader>m", group = "Format" },
|
||||
{ "<leader>n", group = "Notifications" },
|
||||
{ "<leader>p", group = "Project" },
|
||||
{ "<leader>q", group = "Quickfix" },
|
||||
{ "<leader>q", group = "Quit" },
|
||||
{ "<leader>s", group = "Session/Split/Substitute" },
|
||||
{ "<leader>t", group = "Tab/Terminal/Text" },
|
||||
{ "<leader>x", group = "Trouble/Diagnostics" },
|
||||
{ "<leader>w", group = "Save" },
|
||||
{ "<leader>x", group = "Trouble/Quickfix" },
|
||||
{ "<leader>z", group = "Copilot Chat" },
|
||||
})
|
||||
end,
|
||||
|
||||
Reference in New Issue
Block a user