Skip to content

Commit

Permalink
remove vertical split
Browse files Browse the repository at this point in the history
jakewies committed Nov 29, 2021
1 parent edc0186 commit 0812d3e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions nvim/.config/nvim/init.vim
Original file line number Diff line number Diff line change
@@ -79,3 +79,15 @@ nnoremap <leader>k :wincmd k<Cr>
nnoremap <leader>l :wincmd l<Cr>
nnoremap <C-p> :Telescope find_files<Cr>
nnoremap <C-n> :NvimTreeToggle<Cr>

" --- Autocommands

" Remove vert split
" https://www.reddit.com/r/vim/comments/effwku/transparent_vertical_bar_in_vim/
" https://gist.github.com/romainl/379904f91fa40533175dfaec4c833f2f
set fillchars=vert:\ " there is whitespace after the backslash
augroup RemoveVertSplit
autocmd!
autocmd BufEnter,ColorScheme * highlight VertSplit ctermfg=1 ctermbg=None cterm=None
augroup END

0 comments on commit 0812d3e

Please sign in to comment.