Skip to content

Commit

Permalink
Added miasma theme.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-j-ibanez committed Mar 23, 2024
1 parent 6fa5894 commit 1dd841d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
3 changes: 1 addition & 2 deletions lua/zzz/lazy.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ vim.opt.rtp:prepend(lazypath)
require("lazy").setup("zzz.plugins")

-- Specify startup theme
-- Default: nord
vim.cmd([[colorscheme skull]])
vim.cmd([[colorscheme miasma]])

-- Enable transparency
vim.cmd("TransparentDisable")
19 changes: 12 additions & 7 deletions lua/zzz/plugins/colorscheme.lua
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
return {
--Evergarden
-- Miasma
{
'comfysage/evergarden',
opts = {
transparent_background = false,
contrast_dark = 'medium', -- 'hard'|'medium'|'soft'
overrides = { }, -- add custom overrides
}
"xero/miasma.nvim",
branch = "dev",
dependencies = {
"rktjmp/lush.nvim",
"rktjmp/shipwright.nvim",
},
lazy = false,
priority = 1000,
config = function()
vim.cmd("colorscheme miasma")
end,
},
--Nord
{
Expand Down
2 changes: 1 addition & 1 deletion lua/zzz/plugins/nvim-treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ return {
local configs = require("nvim-treesitter.configs")

configs.setup({
ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "elixir", "heex", "javascript", "html" },
ensure_installed = { "c", "cpp", "go", "python", "zig", "javascript", "html", "lua" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
Expand Down

0 comments on commit 1dd841d

Please sign in to comment.