summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.vim/.vimrc1
-rw-r--r--.vim/pluginsettings.vim9
2 files changed, 10 insertions, 0 deletions
diff --git a/.vim/.vimrc b/.vim/.vimrc
index b9181cc..c91ef62 100644
--- a/.vim/.vimrc
+++ b/.vim/.vimrc
@@ -6,6 +6,7 @@ call plug#begin('~/.vim/plugged')
""" Visuals
Plug 'morhetz/gruvbox', {'rtp': 'vim'} " Color theme
Plug 'ryanoasis/vim-devicons' " Icons on stuff like NERDTree
+Plug 'AndrewRadev/popup_scrollbar.vim' " Scrollbar
""" Quality of life
Plug 'tomtom/tcomment_vim' " Toggle comments (gc, gcc)
diff --git a/.vim/pluginsettings.vim b/.vim/pluginsettings.vim
index 72757f5..ec9a9dd 100644
--- a/.vim/pluginsettings.vim
+++ b/.vim/pluginsettings.vim
@@ -56,3 +56,12 @@
let g:texty_office_executable_directory='/home/kamen/Programming/GitLab-repos/texty-office'
" let g:texty_office_pretty_mode=1
" }}}
+
+" popup_scrollbar {{{
+ let g:popup_scrollbar_auto = 1
+ let g:popup_scrollbar_shape = {
+ \ 'head': '',
+ \ 'body': '│',
+ \ 'tail': '', }
+ let g:popup_scrollbar_highlight = 'Comment'
+" }}}