mirror of
https://github.com/danbee/dotfiles-local
synced 2025-03-04 08:49:07 +00:00
11 lines
196 B
VimL
11 lines
196 B
VimL
if has("gui_running") || has("gui_vimr")
|
|
" Remove scrollbars
|
|
set guioptions-=R
|
|
set guioptions-=r
|
|
set guioptions-=L
|
|
set guioptions-=l
|
|
|
|
" Color terminal output
|
|
set guioptions+=!
|
|
endif
|