I use the terminal to vim into existing and new programs. I hate the fact that at all times I need to kick in :syntax on
on the command line to make the syntax all colorful. Does anyone have a recipe for how I can make sure my terminal always kicks in with colorful syntax ?
相关问题
- Xcode debugger displays incorrect values for varia
- Is there a way to report errors in Apple documenta
- Advice for supporting both Mac and Windows Desktop
- Emacs shell: save commit message
- Avoid cmake to add the flags -search_paths_first a
相关文章
- 如何让 vim 支持 .cshtml 文件的代码高亮
- 现在使用swift开发ios应用好还是swift?
- Visual Studio Code, MAC OS X, OmniSharp server is
- Auto-save in VIM as you type
- xcode 4 garbage collection removed?
- IntelliJ IDEA can't open projects or add SDK o
- Automator: How do I use the Choose from List actio
- ImportError: No module named twisted.persisted.sty
Add
syntax on
to your~/.vimrc
. See:help initialization
.Put
syntax on
in your~/.vimrc
file.