-
Hey folks, I was trying to somehow set my non-floating terminal to appear from the right of the screen, instead of bottom. Also, I tried setting the height of my bottom terminal because it occupies too much space right now. Does anyone have an idea how to do it? Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
bjd000
Dec 18, 2024
Replies: 1 comment 2 replies
-
To appear on the right, set your options for terminal: return {
'folke/snacks.nvim',
priority = 1000,
lazy = false,
---@type snacks.Config
opts = {
terminal = {
enabled = true,
win= {position="right", width=0.2},
},
... Or, add it to the command: You can use 'width' and 'height' to set how much space the terminal window consumes. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
rdnrtms
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To appear on the right, set your options for terminal:
Or, add it to the command:
:lua Snacks.terminal.open(nil, { win = { position = "right" }})
You can use 'width' and 'height' to set how much space the terminal window consumes.