Replies: 2 comments 2 replies
-
Try the following return {
"williamboman/mason.nvim",
keys = {
{
"<leader>gg",
function()
Snacks.terminal({ "gitui", "-t", "tokyonight_moon.ron" }, { cwd = LazyVim.root.get() })
end,
desc = "GitUi (Root Dir)",
},
},
} You have to do it in the |
Beta Was this translation helpful? Give feedback.
1 reply
-
Did you put your theme in |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using LazyVim and am trying out GitUI.
GitUI has documentation stating you can run
gitui -t mytheme.ron
to supply a custom theme.I tried all sorts of syntax combos like
Snacks.terminal({ "gitui", "-t", "tokyonight_moon.ron" })
but the custom theme never gets applied. If you name the filetheme.ron
then you don't need to pass in-t
and that works, but I'd like to explicitly pass in the file name so I can have more than 1 theme on disk and then configure Neovim to pick it based on my active theme.Alternatively I can probably use symlinks to solve my problem but still, it will be helpful to know how to do it without that if possible.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions