diff options
-rw-r--r-- | vimrc-full | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -45,7 +45,7 @@ set redrawtime=100 | " The time in milliseconds for redrawing the dis | |||
45 | " set restorescreen | " restores the console after exiting vim | 45 | " set restorescreen | " restores the console after exiting vim |
46 | " set shada+=n~/.vim/shada | " shada file to use | 46 | " set shada+=n~/.vim/shada | " shada file to use |
47 | set scrolljump=5 | " how many lines get scrolled into view when cursor reaches the screens edge | 47 | set scrolljump=5 | " how many lines get scrolled into view when cursor reaches the screens edge |
48 | set scrolloff=999 | " keeps cursor centered | 48 | set scrolloff=3 | " keeps cursor centered |
49 | set splitbelow | " open new windows below the current one (i find that more intuitive) | 49 | set splitbelow | " open new windows below the current one (i find that more intuitive) |
50 | set shiftround | " indent/unindent snaps to multiple of shiftwidths | 50 | set shiftround | " indent/unindent snaps to multiple of shiftwidths |
51 | set shortmess+=I | " don't give the intro message when starting Vim |:intro|. | 51 | set shortmess+=I | " don't give the intro message when starting Vim |:intro|. |
@@ -53,7 +53,7 @@ set showcmd | " essential: show keys of combined commands in t | |||
53 | set signcolumn=yes | " auto=auto hide, yes=always, no=never show the column with error indicators | 53 | set signcolumn=yes | " auto=auto hide, yes=always, no=never show the column with error indicators |
54 | set showtabline=2 | " 0: never, 1: only if there are at least two tabs, 2:always | 54 | set showtabline=2 | " 0: never, 1: only if there are at least two tabs, 2:always |
55 | set winwidth=30 | " keep NERDTreeWindow at least this size | 55 | set winwidth=30 | " keep NERDTreeWindow at least this size |
56 | set winminwidth=30 | " (and all other windows, so TODO: watch out) | 56 | set winminwidth=0 | " (and all other windows, so TODO: watch out) |
57 | set tags+=../tags | 57 | set tags+=../tags |
58 | " set textwidth=100 | " line length (80 used to be default, but...) | 58 | " set textwidth=100 | " line length (80 used to be default, but...) |
59 | " set colorcolumn= | " not used, because we have a :match directive for textwidth | 59 | " set colorcolumn= | " not used, because we have a :match directive for textwidth |
@@ -509,6 +509,7 @@ if has("gui_running") | |||
509 | set guioptions-=r | " do not show right scrollbar | 509 | set guioptions-=r | " do not show right scrollbar |
510 | set winaltkeys=menu | " behave like other windows: ALT-key can be used to open the menu (and cannot be :remaped) | 510 | set winaltkeys=menu | " behave like other windows: ALT-key can be used to open the menu (and cannot be :remaped) |
511 | set guifont=Dejavu\ Sans\ Mono\ for\ Powerline\ 10 | 511 | set guifont=Dejavu\ Sans\ Mono\ for\ Powerline\ 10 |
512 | set guifont=Source\ Code\ Pro\ Semi-Bold\ 10 | ||
512 | " set guifont=Droid\ Sans\ Mono\ for\ Powerline\ 12 | 513 | " set guifont=Droid\ Sans\ Mono\ for\ Powerline\ 12 |
513 | " set selectmode=mouse,key,cmd | " enters vim's select mode when pressing shift-left or shift-END | 514 | " set selectmode=mouse,key,cmd | " enters vim's select mode when pressing shift-left or shift-END |
514 | " set keymodel=startsel,stopsel | " makes shift-left, shift-right available for selecting text | 515 | " set keymodel=startsel,stopsel | " makes shift-left, shift-right available for selecting text |
@@ -748,7 +749,7 @@ let g:netrw_preview = 0 | " | |||
748 | let g:netrw_winsize = 20 | " window size in percent | 749 | let g:netrw_winsize = 20 | " window size in percent |
749 | 750 | ||
750 | 751 | ||
751 | highlight WordBold cterm=bold gui=bold | 752 | highlight WordBold ctermbg=LightYellow ctermfg=black cterm=bold gui=bold |
752 | let w:m1 = 0 | 753 | let w:m1 = 0 |
753 | function! HighlightWordUnderCursor() | 754 | function! HighlightWordUnderCursor() |
754 | if(exists('w:m1') && w:m1 > 0) | 755 | if(exists('w:m1') && w:m1 > 0) |