From f2e01d7e513067ddb57c75f6e38cdcf434946cf8 Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Mon, 22 Oct 2018 00:02:58 +0200 Subject: Major refactoring for version 2.0 vim-plug has been removed and replaced with Vims internal bundle mechanism. But I already noticed, that there is also GLVM now and started trying that as well. --- gvimrc | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 gvimrc (limited to 'gvimrc') diff --git a/gvimrc b/gvimrc new file mode 100644 index 0000000..b4f2d70 --- /dev/null +++ b/gvimrc @@ -0,0 +1,29 @@ +" ====================================================================================================================== +" GUI_DEFAULTS: +" We want to have a minimal UI +" ====================================================================================================================== + +if has("gui_running") + set guicursor=a:block-blinkon100 + set browsedir=buffer + set toolbar+=text + set guiheadroom=0 + set guioptions+=eig + set guioptions-=T | " toolbar + set guioptions+=c | " use console dialogues instead of popups + set guioptions+=a | " auto select: copy&paste using middle click + set guioptions+=m | " remove menu + set guioptions-=e | " do not display tabs + set guioptions-=L | " do not show left scrollbar + set guioptions-=r | " do not show right scrollbar + set winaltkeys=menu | " behave like other windows: ALT-key can be used to open the menu (and cannot be :remaped) + " set selectmode=mouse,key,cmd | " enters vim's select mode when pressing shift-left or shift-END + " set keymodel=startsel,stopsel | " makes shift-left, shift-right available for selecting text + + " its possible to define alternative fonts (order matters), but we will + " use the systems default font and cofigure that if necessary + set guifont=Monospace\ 10 + + " like in the terminal: use Ctrl-shift-v for paste in vim's command editor + cnoremap * +endif -- cgit v1.2.3