diff options
| author | José Juan Loeza Sierra <jj@xz6ze.com> | 2025-11-08 08:11:08 -0800 |
|---|---|---|
| committer | José Juan Loeza Sierra <jj@xz6ze.com> | 2025-11-08 08:11:08 -0800 |
| commit | e5fcbf2fe93f87cea277e101f4529c80aeaedcf2 (patch) | |
| tree | 1f0f425f3466d295eadb0ee1d209dedd70b83317 /dot-config/nvim/plugin/colorscheme.lua | |
| parent | 3e32ab3574e5fbb7707c33a1843558e0b2915a0c (diff) | |
add github theme and new lualine theme
the github lualine theme is quite ugly, so I tweaked the default
tomorrow_night theme
Diffstat (limited to 'dot-config/nvim/plugin/colorscheme.lua')
| -rw-r--r-- | dot-config/nvim/plugin/colorscheme.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/dot-config/nvim/plugin/colorscheme.lua b/dot-config/nvim/plugin/colorscheme.lua index 2539956..48ca70b 100644 --- a/dot-config/nvim/plugin/colorscheme.lua +++ b/dot-config/nvim/plugin/colorscheme.lua @@ -1,6 +1,7 @@ vim.pack.add({ "https://github.com/sainnhe/sonokai", "https://github.com/WTFox/jellybeans.nvim", + "https://github.com/projekt0n/github-nvim-theme", }) vim.g.sonokai_transparent_background = 2 @@ -13,4 +14,10 @@ require("jellybeans").setup({ flat_ui = true, -- toggles "flat UI" for pickers }) -vim.cmd("colorscheme jellybeans") +require("github-theme").setup({ + options = { + transparent = true, + }, +}) + +vim.cmd("colorscheme github_dark_high_contrast") |
