-
I want to remove 'user@operatingsystem' specifically from it |
Beta Was this translation helpful? Give feedback.
Answered by
mortymacs
Feb 10, 2025
Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Rrrinav
-
To remove it for all terminal splits once and for all in all situations you can set the window options directly for the terminal window. ---@class snacks.terminal.Config
---@field win? snacks.win.Config|{}
---@field shell? string|string[] The shell to use. Defaults to `vim.o.shell`
---@field override? fun(cmd?: string|string[], opts?: snacks.terminal.Opts) Use this to use a different terminal implementation
{
win = { wo = { winbar = "" } },
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was looking for the same thing:
I fixed that by:
The one…