diff --git a/background/wallhaven.png b/background/wallhaven.png new file mode 100644 index 00000000..284a53c0 Binary files /dev/null and b/background/wallhaven.png differ diff --git a/stow/nvim/.config/nvim/after/plugin/colors.lua b/stow/nvim/.config/nvim/after/plugin/colors.lua index b3bee3ee..9ba15673 100644 --- a/stow/nvim/.config/nvim/after/plugin/colors.lua +++ b/stow/nvim/.config/nvim/after/plugin/colors.lua @@ -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() diff --git a/stow/nvim/.config/nvim/lua/config/colors.lua b/stow/nvim/.config/nvim/lua/config/colors.lua index 0b501e3b..242be2e9 100644 --- a/stow/nvim/.config/nvim/lua/config/colors.lua +++ b/stow/nvim/.config/nvim/lua/config/colors.lua @@ -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', @@ -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' }, @@ -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 }, diff --git a/stow/nvim/.config/nvim/lua/config/packer.lua b/stow/nvim/.config/nvim/lua/config/packer.lua index 266841a3..c559ae38 100644 --- a/stow/nvim/.config/nvim/lua/config/packer.lua +++ b/stow/nvim/.config/nvim/lua/config/packer.lua @@ -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',