Skip to content

Commit

Permalink
use oxocarbon
Browse files Browse the repository at this point in the history
  • Loading branch information
protiumx committed Mar 4, 2024
1 parent ea8756f commit c9c4925
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 21 deletions.
Binary file added background/wallhaven.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 13 additions & 13 deletions stow/nvim/.config/nvim/after/plugin/colors.lua
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
local colors = require('config.colors')

require('gruvbox').setup({
undercurl = true,
underline = true,
bold = true,
contrast = '',
palette_overrides = {
dark0 = colors.background,
dark1 = colors.background,
},
dim_inactive = false,
transparent_mode = true,
})
-- require('gruvbox').setup({
-- undercurl = true,
-- underline = true,
-- bold = true,
-- contrast = '',
-- palette_overrides = {
-- dark0 = colors.background,
-- dark1 = colors.background,
-- },
-- dim_inactive = false,
-- transparent_mode = true,
-- })

-- vim.g.sonokai_style = 'default'
-- vim.g.sonokai_better_performance = 1
-- vim.g.sonokai_menu_selection_background = 'green'
-- vim.g.sonokai_transparent_background = 2

vim.cmd('colorscheme gruvbox')
vim.cmd('colorscheme oxocarbon')

colors.load()

Expand Down
17 changes: 9 additions & 8 deletions stow/nvim/.config/nvim/lua/config/colors.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ local colors = {
blue = '#61afef',
cyan = '#3e8fb0',
dark_green = '#5faf5f',
dark_grey = '#12100f',
dark_grey = '#161616',
dark_orange = '#ff5d62',
dark_red = '#bf1131',
dark_yellow = '#ffaf00',
dark_violet = '#605060',
green = '#98c379',
grey = '#202020',
light_grey = '#727169',
Expand Down Expand Up @@ -45,8 +46,8 @@ local baseHls = {
TermCursor = { link = 'Cursor' },
ColorColumn = { bg = '#1a1717' },
CursorLine = { bg = 'none' },
CursorLineNr = { fg = colors.orange, bg = 'none' },
-- LineNr = { bg = 'none' },
-- CursorLineNr = { fg = colors.orange, bg = 'none' },
LineNr = { bg = 'none', fg = colors.dark_violet },
EndOfBuffer = { fg = colors.background },
ErrorMsg = { fg = colors.red, bg = 'none', bold = true },
FloatBorder = { link = 'XBorder' },
Expand Down Expand Up @@ -84,16 +85,16 @@ local baseHls = {
TelescopePreviewLine = { fg = colors.background, bg = colors.orange },
TelescopePreviewNormal = { link = 'XMenu', fg = colors.foreground },
TelescopePreviewTitle = { fg = colors.background, bg = colors.light_orange },
TelescopePrompt = { fg = colors.purple },
-- TelescopePrompt = { fg = colors.purple },
TelescopePromptBorder = { link = 'XBorder' },
TelescopePromptNormal = { link = 'XMenu', fg = colors.foreground },
TelescopePromptPrefix = { link = 'XMenu', fg = colors.foreground },
TelescopePromptTitle = { fg = colors.background, bg = colors.light_orange },
-- TelescopePromptTitle = { fg = colors.background, bg = colors.light_orange },
TelescopeResultsBorder = { link = 'XBorder' },
TelescopeResultsNormal = { link = 'XMenu' },
TelescopeResultsTitle = { fg = colors.background, bg = colors.light_orange },
TelescopeSelectionCaret = { fg = colors.red, bg = 'none' },
TelescopeSelection = { fg = colors.orange, bg = 'none' },
-- TelescopeResultsTitle = { fg = colors.background, bg = colors.light_orange },
-- TelescopeSelectionCaret = { fg = colors.red, bg = 'none' },
-- TelescopeSelection = { fg = colors.orange, bg = 'none' },
-- vim-sandwich
OperatorSandwichBuns = { fg = colors.background, bg = colors.green },
OperatorSandwichChange = { fg = colors.background, bg = colors.yellow },
Expand Down
1 change: 1 addition & 0 deletions stow/nvim/.config/nvim/lua/config/packer.lua
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ return packer.startup(function(use)

-- Themes
use('ellisonleao/gruvbox.nvim')
use({ 'nyoom-engineering/oxocarbon.nvim' })
use({
'mcchrish/zenbones.nvim',
requires = 'rktjmp/lush.nvim',
Expand Down

0 comments on commit c9c4925

Please sign in to comment.