aboutsummaryrefslogtreecommitdiff
path: root/vimrc-full
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc-full')
-rw-r--r--vimrc-full8
1 files changed, 5 insertions, 3 deletions
diff --git a/vimrc-full b/vimrc-full
index 08e140e..5b12fd7 100644
--- a/vimrc-full
+++ b/vimrc-full
@@ -5,7 +5,8 @@ set ts=4 sts=4 sw=4 expandtab | " better done with a modeline
5set redrawtime=1000 | " Timeout in milliseconds for redrawing the display / CTRL+L to retry 5set redrawtime=1000 | " Timeout in milliseconds for redrawing the display / CTRL+L to retry
6 6
7" scripts from the default vim installation, which do not get loaded by default, but are useful. 7" scripts from the default vim installation, which do not get loaded by default, but are useful.
8silent ":runtime macros/editexisting.vim" 8" silent :runtime macros/editexisting.vim
9packadd! editexisting
9 10
10if has("multi_byte") 11if has("multi_byte")
11 scriptencoding utf-8 | " tell vim that we are using utf-8 here 12 scriptencoding utf-8 | " tell vim that we are using utf-8 here
@@ -452,9 +453,10 @@ if has("gui_running")
452 set guioptions-=L | " do not show left scrollbar 453 set guioptions-=L | " do not show left scrollbar
453 set guioptions-=r | " do not show right scrollbar 454 set guioptions-=r | " do not show right scrollbar
454 set winaltkeys=menu | " behave like other windows: ALT-key can be used to open the menu (and cannot be :remaped) 455 set winaltkeys=menu | " behave like other windows: ALT-key can be used to open the menu (and cannot be :remaped)
455 set guifont=Dejavu\ Sans\ Mono\ for\ Powerline\ 10 456 " set guifont=Dejavu\ Sans\ Mono\ for\ Powerline\ 10
456 set guifont=Source\ Code\ Pro\ Semi-Bold\ 10 457 " set guifont=Source\ Code\ Pro\ Semi-Bold\ 10
457 " set guifont=Droid\ Sans\ Mono\ for\ Powerline\ 12 458 " set guifont=Droid\ Sans\ Mono\ for\ Powerline\ 12
459 set guifont=Dejavu\ Sans\ Mono\ For\ Powerline\ Semibold
458" set selectmode=mouse,key,cmd | " enters vim's select mode when pressing shift-left or shift-END 460" set selectmode=mouse,key,cmd | " enters vim's select mode when pressing shift-left or shift-END
459" set keymodel=startsel,stopsel | " makes shift-left, shift-right available for selecting text 461" set keymodel=startsel,stopsel | " makes shift-left, shift-right available for selecting text
460endif 462endif
..