Skip to content

Commit

Permalink
feat(neovim): added colorbuddy and gruvbox colorschemes
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroSuero committed Apr 15, 2024
1 parent a1f86b1 commit efd4e70
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
18 changes: 18 additions & 0 deletions roles/neovim/files/lua/aome/colorschemes/gruvbox.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
return {
terminal_colors = true, -- add neovim terminal colors
undercurl = true,
underline = true,
bold = true,
italic = {
strings = false,
emphasis = true,
comments = true,
operators = false,
folds = true,
},
strikethrough = true,
inverse = true, -- invert background for search, diffs, statuslines and errors
contrast = "", -- can be "hard", "soft" or empty string
dim_inactive = true,
transparent_mode = vim.g.transparency,
}
11 changes: 11 additions & 0 deletions roles/neovim/files/lua/custom/plugins/ui/colorschemes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,15 @@ return {
name = "rose-pine",
opts = require(configs .. "rose-pine"),
},
{
"ellisonleao/gruvbox.nvim",
lazy = false,
priority = 1000,
config = true,
opts = require(configs .. "gruvbox"),
},
{
"tjdevries/colorbuddy.nvim",
lazy = false,
},
}

0 comments on commit efd4e70

Please sign in to comment.