diff --git a/vim/.vim/plugin/signtoggle.vim b/vim/.vim/plugin/signtoggle.vim new file mode 100644 index 0000000..8dee387 --- /dev/null +++ b/vim/.vim/plugin/signtoggle.vim @@ -0,0 +1,8 @@ +augroup signtoggle + autocmd! + " Only show the sign column for the current focused buffer + autocmd BufEnter,FocusGained,WinEnter * set signcolumn=yes + autocmd BufLeave,FocusLost,WinLeave * set signcolumn=no + " Disable the sign column in terminal + autocmd TerminalOpen * set signcolumn=no +augroup END