Vim: Can a different style be applied to a vim-terminal?
1 answer
+3
−0
Works for me
The following users marked this post as Works for me:
User | Comment | Date |
---|---|---|
CodeFarmer |
Thread: Works for me This works very nicely. |
Feb 7, 2023 at 23:28 |
All available "styles" are listed in :help highlight-groups
.
You will find that hl-Terminal
is one of them.
As an example, to make the Vim terminal background dark blue, use
:hi Terminal ctermbg=darkblue guibg=darkblue
guibg
applies for Gvim and ctermbg
for terminal Vim.
0 comment threads