我是一个绝对的新手,所以我想我会尝试使用像spf13-vim这样的预配置发行版。所以对于我的问题,我想禁用"标签突出显示"因为我发现它有点分散注意力...... 我认为这张照片应该清楚我的意思
答案 0 :(得分:5)
在〜/ .vimrc.local或〜/ .vimrc.before.local下面添加一行,默认情况下禁用缩进指南。你也可以<leader>ig
。
let g:indent_guides_enable_on_vim_startup = 0
答案 1 :(得分:3)
您可以使用,ig
打开/关闭它们。
答案 2 :(得分:2)
在.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.