how to remove grey bar to right of tabs?

This page summarizes the projects mentioned and recommended in the original post on /r/vim

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • vim-airline

    lean & mean status/tabline for vim that's light as air

  • As I can see, you're running airline: my guess that issue was with that it handles all that stuff on its own was right --- look in this issue or directly :h tabline_tabfill

  • vim-github-dashboard

    :octocat: Browse GitHub events in Vim

  • set nocursorline set nocompatible " be iMproved, required filetype off " required set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'VundleVim/Vundle.vim' "letVundle manage Vundle, required Plugin 'terryma/vim-smooth-scroll' "fast scrolling Plugin 'junegunn/seoul256.vim' "Make sure you use single quotes Plugin 'PotatoesMaster/i3-vim-syntax' "i3 syntax highlighting for i3 config Plugin 'junegunn/vim-easy-align' Plugin 'SirVer/ultisnips' | Plugin 'honza/vim-snippets' "vim-snippets depends on ultisnips Plugin 'tpope/vim-fireplace', { 'for': 'clojure' } Plugin 'https://github.com/junegunn/vim-github-dashboard.git' "Using git URL Plugin 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' } "Plugin options Plugin 'junegunn/fzf', { 'dir': '~/.fzf', 'do': 'yes \| ./install' } "Plugin outside ~/.vim/plugged with post-update hook Plugin 'itchyny/lightline.vim' "Colored line at bottom of screen Plugin 'terryma/vim-multiple-cursors' Plugin 'file:///home/vip/.vim/bundle/guicolorscheme.vim' Plugin 'https://github.com/altercation/vim-colors-solarized.git' call vundle#end() " required, Must add all Plugins before this line filetype plugin indent on " required if v:progname =~? "evim" finish endif if has("vms") set nobackup " do not keep a backup file, use versions instead else set backup " keep a backup file (restore to previous version) if has('persistent_undo') set undofile " keep an undo file (undo changes after closing) endif endif if &t_Co > 2 || has("gui_running") set hlsearch endif augroup vimrcEx au! autocmd FileType text setlocal textwidth=78 augroup END else set autoindent " always set autoindenting on endif " has("autocmd") if has('syntax') && has('eval') packadd! matchit endif set undodir=$HOME/.vim/undodir set backupdir=$HOME/.vim/backupdir set number set noswapfile let NERDTreeAutoDeleteBuffer = 1 let NERDTreeShowHidden = 1 let NERDTreeQuitOnOpen = 1 let NERDChristmasTree = 1 let NERDTreeAutoCenter = 1 let NERDTreeHighlightCursorline = 1 let NERDTreeMinimalUI = 1 let NERDTreeDirArrows = 1 set laststatus=2 let g:powerline_pycmd="py3" let g:powerline_pycmd="py2" let g:powerline_pycmd="py" let g:python_highlight_all = 1 guibg=#ffffff guifg=#d70000 map "+y map "+p map zz za map x za map ± map ² map ³ map ´ map µ map ¶ map · map ¸ map ¹ map ° map :w map :noh set scrolloff=999 nnoremap 1gt nnoremap 2gt nnoremap 3gt nnoremap 4gt nnoremap 5gt nnoremap 6gt nnoremap 7gt nnoremap 8gt nnoremap 9gt nnoremap 0gt nnoremap :silent! nohls nnoremap i :nohi noremap :call smooth_scroll#up(&scroll, 0, 2) noremap :call smooth_scroll#down(&scroll, 0, 2) noremap :call smooth_scroll#up(&scroll*2, 0, 4) noremap :call smooth_scroll#down(&scroll*2, 0, 4)

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • vim-colors-solarized

    precision colorscheme for the vim text editor

  • set nocursorline set nocompatible " be iMproved, required filetype off " required set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'VundleVim/Vundle.vim' "letVundle manage Vundle, required Plugin 'terryma/vim-smooth-scroll' "fast scrolling Plugin 'junegunn/seoul256.vim' "Make sure you use single quotes Plugin 'PotatoesMaster/i3-vim-syntax' "i3 syntax highlighting for i3 config Plugin 'junegunn/vim-easy-align' Plugin 'SirVer/ultisnips' | Plugin 'honza/vim-snippets' "vim-snippets depends on ultisnips Plugin 'tpope/vim-fireplace', { 'for': 'clojure' } Plugin 'https://github.com/junegunn/vim-github-dashboard.git' "Using git URL Plugin 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' } "Plugin options Plugin 'junegunn/fzf', { 'dir': '~/.fzf', 'do': 'yes \| ./install' } "Plugin outside ~/.vim/plugged with post-update hook Plugin 'itchyny/lightline.vim' "Colored line at bottom of screen Plugin 'terryma/vim-multiple-cursors' Plugin 'file:///home/vip/.vim/bundle/guicolorscheme.vim' Plugin 'https://github.com/altercation/vim-colors-solarized.git' call vundle#end() " required, Must add all Plugins before this line filetype plugin indent on " required if v:progname =~? "evim" finish endif if has("vms") set nobackup " do not keep a backup file, use versions instead else set backup " keep a backup file (restore to previous version) if has('persistent_undo') set undofile " keep an undo file (undo changes after closing) endif endif if &t_Co > 2 || has("gui_running") set hlsearch endif augroup vimrcEx au! autocmd FileType text setlocal textwidth=78 augroup END else set autoindent " always set autoindenting on endif " has("autocmd") if has('syntax') && has('eval') packadd! matchit endif set undodir=$HOME/.vim/undodir set backupdir=$HOME/.vim/backupdir set number set noswapfile let NERDTreeAutoDeleteBuffer = 1 let NERDTreeShowHidden = 1 let NERDTreeQuitOnOpen = 1 let NERDChristmasTree = 1 let NERDTreeAutoCenter = 1 let NERDTreeHighlightCursorline = 1 let NERDTreeMinimalUI = 1 let NERDTreeDirArrows = 1 set laststatus=2 let g:powerline_pycmd="py3" let g:powerline_pycmd="py2" let g:powerline_pycmd="py" let g:python_highlight_all = 1 guibg=#ffffff guifg=#d70000 map "+y map "+p map zz za map x za map ± map ² map ³ map ´ map µ map ¶ map · map ¸ map ¹ map ° map :w map :noh set scrolloff=999 nnoremap 1gt nnoremap 2gt nnoremap 3gt nnoremap 4gt nnoremap 5gt nnoremap 6gt nnoremap 7gt nnoremap 8gt nnoremap 9gt nnoremap 0gt nnoremap :silent! nohls nnoremap i :nohi noremap :call smooth_scroll#up(&scroll, 0, 2) noremap :call smooth_scroll#down(&scroll, 0, 2) noremap :call smooth_scroll#up(&scroll*2, 0, 4) noremap :call smooth_scroll#down(&scroll*2, 0, 4)

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts