How do you change the unused / bottom portion of the vim editor? The picture will hopefully clarify my terrible description :).
相关问题
- Highlight parent path to the root
- Emacs shell: save commit message
- How to change the first two uppercase characters o
- Insert text into current buffer from function
- Hot reload on save
相关文章
- es 单字段多分词器时,textField.keyword无法高亮
- 如何让 vim 支持 .cshtml 文件的代码高亮
- Auto-save in VIM as you type
- How can I use gcc's -I command to add recursiv
- Vim: overloaded mapping for multiple modes
- How to use relative line numbering universally in
- How to copy the value of a vim option to a registe
- E185: Cannot find color scheme*
That section is controlled by the highlight group NonText. So you can add the following line after your colorscheme line to set the background color to blue.
Of course change blue to whatever color you want. Also if you are in gvim you will want to use
guibg=
to set the background color.