aboutsummaryrefslogtreecommitdiff
path: root/.vim/vimrc
diff options
context:
space:
mode:
Diffstat (limited to '.vim/vimrc')
-rw-r--r--.vim/vimrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.vim/vimrc b/.vim/vimrc
index 44982f2..4c18b8c 100644
--- a/.vim/vimrc
+++ b/.vim/vimrc
@@ -48,7 +48,8 @@ set ts=2 sts=2 sw=2 expandtab | " indentation which i like (abbr: tabstop, softt
48set autoindent | " always set autoindenting on 48set autoindent | " always set autoindenting on
49set copyindent | " copy the previous indentation on autoindenting 49set copyindent | " copy the previous indentation on autoindenting
50set scrolloff=2 | " always keeps at least two lines visible (when seeking) 50set scrolloff=2 | " always keeps at least two lines visible (when seeking)
51set selectmode=mouse | " avoid using select mode (only with mouse) 51" set selectmode=mouse | " avoid using select mode (only with mouse)
52set mousemodel=popup_setpos | " display a default right click menu for the selection (that is c&p is possible)
52set selection=exclusive | " includes last character of the selection into following command (like x or d) 53set selection=exclusive | " includes last character of the selection into following command (like x or d)
53 54
54set whichwrap=b,s,<,>,[,] | " beyond beginning/end line causes cusor to wrap 55set whichwrap=b,s,<,>,[,] | " beyond beginning/end line causes cusor to wrap
..