开发者

Can someone help fix my vimrc config?

开发者 https://www.devze.com 2022-12-23 18:47 出处:网络
set nohlsearch set ai set bg=dark set showmatch highlight SpecialKey ctermfg=DarkGray set listchars=tab:>-,trail:~
set nohlsearch
set ai
set bg=dark
set showmatch
highlight SpecialKey ctermfg=DarkGray
set listchars=tab:>-,trail:~
set list
autocmd BufRead *.py set smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class
set tabstop=4
set shiftwidth=4
set expandtab
set autoindent
set smartindent
syntax on
set listchars=tab:>-
set listchars+=trail:.
set ignorecase
set smartcase
map <C-t><up> :tabr<cr>
map <C-t><down> :tabl<cr>
map <C-t><left> :tabp<cr>
map <C-t><right> :tabn<cr>
map <F1> <Esc>
imap <F1> <Esc>
se开发者_如何学Ct pastetoggle=<F5>

This is my vimrc. I want to fix it so that it doesn't show >---- >---- when other people tab. Thank.


Remove these lines:

set listchars=tab:>-,trail:~
set listchars=tab:>-


set list

is doing this. You can

:set nolist

if it is bothering you but I recommend keeping it for python files (you might be coding in python looking at that autocommand). ie. ... Learn to love it. create a mapping if it is a regular issue.

Also there is

:retab

to remove tabs if you have an expandtab setting.

0

精彩评论

暂无评论...
验证码 换一张
取 消