Menu
Newbedev LogoNEWBEDEV Python Javascript Linux Cheat sheet
Newbedev LogoNEWBEDEV
  • Python 1
  • Javascript
  • Linux
  • Cheat sheet
  • Contact

Vim: remove line numbers and colorcolumn from quickfix window

Put the following into ~/.vim/ftplugin/qf.vim:

setlocal nonumber
setlocal colorcolumn=

As long as you have filetype plugin support enabled, that should handle it.


If you don't mind having an extra line in your ~/.vimrc instead:

au FileType qf setlocal nonumber colorcolumn=

Tags:

Vim

Vimrc

Related

mount gives unknown filesystem type 'vboxsf' Getting Windows 8 Product ID through command-line On how many computers can you install the retail version of Windows 8? Windows 8: How to Lock (not sleep) laptop on lid close? Windows 8 CRITICAL_PROCESS_DIED How to show progress of "File History" in Windows8? Shortcut to open specific bookmark / URL in Chrome Screen occasionally flashes black Word will not set the Numbering Value that I choose View a list of symbolic links on system? What is a Jump list in Windows? What is the difference in "Boot with BIOS" and "Boot with UEFI"

Recent Posts

Pandas how to find column contains a certain value Recommended way to install multiple Python versions on Ubuntu 20.04 Build super fast web scraper with Python x100 than BeautifulSoup How to convert a SQL query result to a Pandas DataFrame in Python How to write a Pandas DataFrame to a .csv file in Python
© 2021 newbedevPrivacy Policy