Skip to content

Commit

Permalink
feat(colorscheme): update colorscheme to monokai-pro-spectrum
Browse files Browse the repository at this point in the history
  • Loading branch information
tr1v3r committed Dec 17, 2024
1 parent e930703 commit 2719870
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lua/plugins/configs/ui/lualine.lua
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,8 @@ return function()
winbar = { "terminal", "toggleterm", "prompt", "NvimTree" },
},
component_separators = "",
section_separators = { left = "", right = "" },
section_separators = { left = "", right = "" },
-- section_separators = { left = "", right = "" },
refresh = {
tabline = 1000,
winbar = 100,
Expand Down
21 changes: 21 additions & 0 deletions lua/plugins/configs/ui/monokai.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ return function()
terminal_colors = true,
devicons = true,
italic_comments = true,
background_clear = {
-- "float_win",
"toggleterm",
"telescope",
-- "which-key",
"renamer",
"notify",
-- "nvim-tree",
-- "neo-tree",
-- "bufferline", -- better used if background of `neo-tree` or `nvim-tree` is cleared
}, -- "float_win", "toggleterm", "telescope", "which-key", "renamer", "neo-tree", "nvim-tree", "bufferline"
plugins = {
bufferline = {
underline_selected = false,
underline_visible = false,
},
indent_blankline = {
context_highlight = "default", -- default | pro
context_start_underline = false,
},
},
})
-- vim.cmd.colorscheme("monokai-pro")
end
2 changes: 1 addition & 1 deletion lua/r1v3r/settings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ settings["use_copilot"] = true
-- Available values are: `catppuccin`, `catppuccin-latte`, `catppucin-mocha`, `catppuccin-frappe`,
-- `catppuccin-macchiato`, `edge`, `nord`, `material`.
---@type string
settings["colorscheme"] = "monokai-pro-ristretto"
settings["colorscheme"] = "monokai-pro-spectrum"

-- Set it to true if your terminal has transparent background.
---@type boolean
Expand Down

0 comments on commit 2719870

Please sign in to comment.