The-Repo-Club 79dcde852e
Added ginit and fixed a few config files
Signed-off-by: The-Repo-Club <wayne6324@gmail.com>
2022-08-17 07:59:12 +01:00

24 lines
550 B
VimL

" Enable Mouse
set mouse=a
" Disable GUI Tabline
if exists(':GuiTabline')
GuiTabline 0
endif
" Disable GUI Popupmenu
if exists(':GuiPopupmenu')
GuiPopupmenu 0
endif
" Enable GUI ScrollBar
if exists(':GuiScrollBar')
GuiScrollBar 0
endif
" Right Click Context Menu (Copy-Cut-Paste)
nnoremap <silent><RightMouse> :call GuiShowContextMenu()<CR>
inoremap <silent><RightMouse> <Esc>:call GuiShowContextMenu()<CR>
xnoremap <silent><RightMouse> :call GuiShowContextMenu()<CR>
snoremap <silent><RightMouse> <C-G>:call GuiShowContextMenu()<CR>