spf13-vim 禁用标签突出显示
spf13-vim disable tab highlighting
我绝对是 vim 新手,所以我想我会尝试使用一些预配置的发行版,例如 spf13-vim。所以对于我的问题,我想禁用 "tab-highlighting" 因为我觉得它有点让人分心......
我认为这张图片应该清楚我的意思
您可以将它们切换为 on/off 和 ,ig
。
在您的 ~/.vimrc.local 或 ~/.vimrc.before.local 下方添加一行以禁用默认缩进指南。你也可以<leader>ig
。
let g:indent_guides_enable_on_vim_startup = 0
在您的 .vimrc.local 中写入 set nolist
以将其关闭。
见:h list
'list' boolean (default off)
List mode: Show tabs as CTRL-I is displayed, display $ after end of
line. Useful to see the difference between tabs and spaces and for
trailing blanks. Further changed by the 'listchars' option.
我绝对是 vim 新手,所以我想我会尝试使用一些预配置的发行版,例如 spf13-vim。所以对于我的问题,我想禁用 "tab-highlighting" 因为我觉得它有点让人分心......
我认为这张图片应该清楚我的意思
您可以将它们切换为 on/off 和 ,ig
。
在您的 ~/.vimrc.local 或 ~/.vimrc.before.local 下方添加一行以禁用默认缩进指南。你也可以<leader>ig
。
let g:indent_guides_enable_on_vim_startup = 0
在您的 .vimrc.local 中写入 set nolist
以将其关闭。
见:h list
'list' boolean (default off)
List mode: Show tabs as CTRL-I is displayed, display $ after end of
line. Useful to see the difference between tabs and spaces and for
trailing blanks. Further changed by the 'listchars' option.