Compare commits
No commits in common. "7e5c846bc478c56be413477b4255282cf3951eab" and "7fd18eeda9bff733e2fbdeea51aa05d0617903e9" have entirely different histories.
7e5c846bc4
...
7fd18eeda9
4 changed files with 23 additions and 22 deletions
|
@ -17,7 +17,8 @@ return {
|
||||||
},
|
},
|
||||||
highlights = {
|
highlights = {
|
||||||
buffer_selected = {
|
buffer_selected = {
|
||||||
fg = "#dfa000",
|
fg = "#d8a657",
|
||||||
|
bg = "#141617",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
|
@ -16,8 +16,8 @@ return {
|
||||||
-- Settings to override colorscheme
|
-- Settings to override colorscheme
|
||||||
-- vim.api.nvim_set_hl(0, "ModeMsg", { bold = true, fg = "#d8a657"})
|
-- vim.api.nvim_set_hl(0, "ModeMsg", { bold = true, fg = "#d8a657"})
|
||||||
-- colors of tabline
|
-- colors of tabline
|
||||||
vim.api.nvim_set_hl(0, "TabLine", { bg = "#272e33", fg = "#dfa000" })
|
vim.api.nvim_set_hl(0, "TabLine", { bg = "#3c3836", fg = "#89b482" })
|
||||||
vim.api.nvim_set_hl(0, "TabLineFil", { bg = "#374145" })
|
vim.api.nvim_set_hl(0, "TabLineFil", { bg = "#1d2021" })
|
||||||
vim.api.nvim_set_hl(0, "TabLineSel", { bold = true, bg = "none", fg = "#d8a657" })
|
vim.api.nvim_set_hl(0, "TabLineSel", { bold = true, bg = "none", fg = "#d8a657" })
|
||||||
-- color of statusline
|
-- color of statusline
|
||||||
vim.api.nvim_set_hl(0, "StatusLine", { bold = false, bg = "#1d2021", fg = "#89b482" })
|
vim.api.nvim_set_hl(0, "StatusLine", { bold = false, bg = "#1d2021", fg = "#89b482" })
|
||||||
|
@ -25,22 +25,22 @@ return {
|
||||||
-- color of vertical split line
|
-- color of vertical split line
|
||||||
vim.api.nvim_set_hl(0, "VertSplit", { bg = "#141617", fg = "#141617" })
|
vim.api.nvim_set_hl(0, "VertSplit", { bg = "#141617", fg = "#141617" })
|
||||||
-- color of the cursorline and cursorlinenumber
|
-- color of the cursorline and cursorlinenumber
|
||||||
vim.api.nvim_set_hl(0, "Cursorline", { bg = "#2d353b" })
|
vim.api.nvim_set_hl(0, "Cursorline", { bg = "#141617" })
|
||||||
vim.api.nvim_set_hl(0, "CursorLineNr", { bold = true, fg = "#dfa000" })
|
vim.api.nvim_set_hl(0, "CursorLineNr", { bold = true, bg = "#141617", fg = "#d8a657" })
|
||||||
-- color of Floats and FloatBorders
|
-- color of Floats and FloatBorders
|
||||||
vim.api.nvim_set_hl(0, "NormalFloat", { bg = none, fg = none })
|
vim.api.nvim_set_hl(0, "NormalFloat", { bg = none, fg = none })
|
||||||
vim.api.nvim_set_hl(0, "FloatBorder", { bg = none, fg = "#9da9a0" })
|
vim.api.nvim_set_hl(0, "FloatBorder", { bg = none, fg = "#d4be98" })
|
||||||
vim.api.nvim_set_hl(0, "DiagnosticFloatingWarn", { bg = none, fg = "#dfa000" })
|
vim.api.nvim_set_hl(0, "DiagnosticFloatingWarn", { bg = none, fg = "#d8a657" })
|
||||||
vim.api.nvim_set_hl(0, "DiagnosticFloatingError", { bg = none, fg = "#f85552" })
|
vim.api.nvim_set_hl(0, "DiagnosticFloatingError", { bg = none, fg = "#ea6962" })
|
||||||
vim.api.nvim_set_hl(0, "DiagnosticFloatingHint", { bg = none, fg = "#35a77c" })
|
vim.api.nvim_set_hl(0, "DiagnosticFloatingHint", { bg = none, fg = "#a9b665" })
|
||||||
vim.api.nvim_set_hl(0, "DiagnosticFloatingInfo", { bg = none, fg = "#8da101" })
|
vim.api.nvim_set_hl(0, "DiagnosticFloatingInfo", { bg = none, fg = "#d4be98" })
|
||||||
|
|
||||||
-- autocommand for overrides
|
-- autocommand for overrides
|
||||||
vim.api.nvim_create_autocmd("ColorScheme", {
|
vim.api.nvim_create_autocmd("ColorScheme", {
|
||||||
pattern = "everforest",
|
pattern = "everforest",
|
||||||
callback = function()
|
callback = function()
|
||||||
vim.api.nvim_set_hl(0, "TabLine", { bg = "#272e33", fg = "#dfa000" })
|
vim.api.nvim_set_hl(0, "TabLine", { bg = "#3c3836", fg = "#89b482" })
|
||||||
vim.api.nvim_set_hl(0, "TabLineFil", { bg = "#374145" })
|
vim.api.nvim_set_hl(0, "TabLineFil", { bg = "#1d2021" })
|
||||||
vim.api.nvim_set_hl(0, "TabLineSel", { bold = true, bg = "none", fg = "#d8a657" })
|
vim.api.nvim_set_hl(0, "TabLineSel", { bold = true, bg = "none", fg = "#d8a657" })
|
||||||
-- color of statusline
|
-- color of statusline
|
||||||
vim.api.nvim_set_hl(0, "StatusLine", { bold = false, bg = "#1d2021", fg = "#89b482" })
|
vim.api.nvim_set_hl(0, "StatusLine", { bold = false, bg = "#1d2021", fg = "#89b482" })
|
||||||
|
@ -48,15 +48,15 @@ return {
|
||||||
-- color of vertical split line
|
-- color of vertical split line
|
||||||
vim.api.nvim_set_hl(0, "VertSplit", { bg = "#141617", fg = "#141617" })
|
vim.api.nvim_set_hl(0, "VertSplit", { bg = "#141617", fg = "#141617" })
|
||||||
-- color of the cursorline and cursorlinenumber
|
-- color of the cursorline and cursorlinenumber
|
||||||
vim.api.nvim_set_hl(0, "Cursorline", { bg = "#2d353b" })
|
vim.api.nvim_set_hl(0, "Cursorline", { bg = "#141617" })
|
||||||
vim.api.nvim_set_hl(0, "CursorLineNr", { bold = true, fg = "#dfa000" })
|
vim.api.nvim_set_hl(0, "CursorLineNr", { bold = true, bg = "#141617", fg = "#d8a657" })
|
||||||
-- color of Floats and FloatBorders
|
-- color of Floats and FloatBorders
|
||||||
vim.api.nvim_set_hl(0, "NormalFloat", { bg = none, fg = none })
|
vim.api.nvim_set_hl(0, "NormalFloat", { bg = none, fg = none })
|
||||||
vim.api.nvim_set_hl(0, "FloatBorder", { bg = none, fg = "#9da9a0" })
|
vim.api.nvim_set_hl(0, "FloatBorder", { bg = none, fg = "#d4be98" })
|
||||||
vim.api.nvim_set_hl(0, "DiagnosticFloatingWarn", { bg = none, fg = "#dfa000" })
|
vim.api.nvim_set_hl(0, "DiagnosticFloatingWarn", { bg = none, fg = "#d8a657" })
|
||||||
vim.api.nvim_set_hl(0, "DiagnosticFloatingError", { bg = none, fg = "#f85552" })
|
vim.api.nvim_set_hl(0, "DiagnosticFloatingError", { bg = none, fg = "#ea6962" })
|
||||||
vim.api.nvim_set_hl(0, "DiagnosticFloatingHint", { bg = none, fg = "#35a77c" })
|
vim.api.nvim_set_hl(0, "DiagnosticFloatingHint", { bg = none, fg = "#a9b665" })
|
||||||
vim.api.nvim_set_hl(0, "DiagnosticFloatingInfo", { bg = none, fg = "#8da101" })
|
vim.api.nvim_set_hl(0, "DiagnosticFloatingInfo", { bg = none, fg = "#d4be98" })
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -50,7 +50,7 @@ return {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'fileformat',
|
'fileformat',
|
||||||
color = {gui = 'italic', bg = '#141617'},
|
color = {gui = 'italic'},
|
||||||
symbols = {
|
symbols = {
|
||||||
unix = '(unix)',
|
unix = '(unix)',
|
||||||
dos = '(dos)',
|
dos = '(dos)',
|
||||||
|
|
|
@ -14,7 +14,7 @@ return {
|
||||||
{ "<leader>/", "<cmd>Telescope live_grep<cr>", desc = "Grep Content in Files" },
|
{ "<leader>/", "<cmd>Telescope live_grep<cr>", desc = "Grep Content in Files" },
|
||||||
{ "<leader>fl", "<cmd>Telescope grep_string<cr>", desc = "Grep currently hovered String" },
|
{ "<leader>fl", "<cmd>Telescope grep_string<cr>", desc = "Grep currently hovered String" },
|
||||||
{ "<leader>fG", "<cmd>Telescope git_files<cr>", desc = "Find Git Files" },
|
{ "<leader>fG", "<cmd>Telescope git_files<cr>", desc = "Find Git Files" },
|
||||||
{ "<leader>fk", "<cmd>Telescope keymaps<cr>", desc = "List Keymaps" },
|
{ "<leader>fk", "<cmd>Telescope keymaps<cr>", desc = "Find Git Files" },
|
||||||
{ "<leader>fr", "<cmd>Telescope oldfiles<cr>", desc = "Find Recent Files" },
|
{ "<leader>fr", "<cmd>Telescope oldfiles<cr>", desc = "Find Recent Files" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue