Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bin/omarchy-theme-set
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ omarchy-restart-swayosd
hyprctl reload
pkill -SIGUSR2 btop
makoctl reload
pkill -SIGUSR1 nvim

# Change gnome, browser, vscode themes
omarchy-theme-set-terminal
Expand Down
16 changes: 16 additions & 0 deletions config/nvim/lua/plugins/chameleon.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
return {
{
"tahayvr/chameleon.nvim",
lazy = false,
priority = 1000,
config = function()
require("chameleon").setup({
system = {
symlink_path = vim.fn.expand("~/.config/omarchy/current/theme"),
debounce_ms = 100,
notify = false,
},
})
end,
},
}