Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How To Remove Tab Highlighting in vim

Tags:

python

vim

Hello I am trying to personalize vim and ran into this problem every white space is highlighted i tried to search for fixes like using :noh,:nohlsearch but those did not workenter image description here

Here is my .vimrc file

:nohlsearch 
syntax on
set noerrorbells
set tabstop=4 softtabstop=4
set shiftwidth=4
set expandtab
set smartindent
set nu
set nowrap
set smartcase
set noswapfile
set nobackup
set undofile
set incsearch
set colorcolumn=80
set backspace=indent,eol,start
highlight ColorColumn ctermbg=0 guibg=lightgrey
call plug#begin('~/.vim/plugged') 
" Neovim lsp Plugins
Plug 'rafi/awesome-vim-colorschemes'
Plug 'neovim/nvim-lspconfig'
Plug 'tweekmonster/gofmt.vim'
Plug 'tpope/vim-fugitive'
Plug 'vim-utils/vim-man'
Plug 'mbbill/undotree'
Plug 'sheerun/vim-polyglot'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug 'stsewd/fzf-checkout.vim'
Plug 'vuciv/vim-bujo'
Plug 'tpope/vim-dispatch'
Plug '/home/mpaulson/personal/vim-apm'
Plug 'theprimeagen/vim-be-good'
Plug 'gruvbox-community/gruvbox'
Plug 'colepeters/spacemacs-theme.vim'
Plug 'sainnhe/gruvbox-material'
Plug 'phanviet/vim-monokai-pro'
Plug 'flazz/vim-colorschemes'
Plug 'chriskempson/base16-vim'
call plug#end()

like image 225
Jostimian Avatar asked Mar 21 '26 18:03

Jostimian


1 Answers

The listchars feature might have been enabled. Try disabling it with :set nolist

like image 139
Nitul Avatar answered Mar 23 '26 08:03

Nitul



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!