Просмотр исходного кода

don't wrap text by default in vim

Makes opening and closing splits visually more continuous/less confusing -
wrapping often causes lines/line numbers to jump.
Weiyi Lou 13 лет назад
Родитель
Сommit
3892a113ce
1 измененных файлов с 7 добавлено и 13 удалено
  1. 7 13
      vim/vimrc

+ 7 - 13
vim/vimrc

@@ -74,18 +74,6 @@ else
 endif
 endif
 
 
 
 
-""""""""
-"" Start Up
-"""""""""""""""""""""""""""""""""""""""""""""""""""
-
-function! StartUp()
-    " start NERDTree if vim called with no arguments
-    if 0 == argc()
-        NERDTree
-    end
-endfunction
-
-
 """"""""
 """"""""
 "" Tabs and Text Formatting
 "" Tabs and Text Formatting
 """"""""""""""""""""""""""""""""""""""""""""""""""""""
 """"""""""""""""""""""""""""""""""""""""""""""""""""""
@@ -96,7 +84,6 @@ set shiftround      " indent to nearest tabstops
 set shiftwidth=2    " amount to indent with > and <
 set shiftwidth=2    " amount to indent with > and <
 set smarttab        " backspace tabs where appropriate even if spaces
 set smarttab        " backspace tabs where appropriate even if spaces
 set softtabstop=2   " let backspace delete by indents
 set softtabstop=2   " let backspace delete by indents
-set wrap lbr        " wrap long lines of text
 set backspace=eol,start,indent "backspace over everything
 set backspace=eol,start,indent "backspace over everything
 set textwidth=80    " try to keep text within 80 characters
 set textwidth=80    " try to keep text within 80 characters
 set colorcolumn=+1  " mark out the limits of the textwidth
 set colorcolumn=+1  " mark out the limits of the textwidth
@@ -268,6 +255,13 @@ let g:EasyGrepHighlightQfMatches = 1
 "" Functions
 "" Functions
 """"""""""""""""""""""""""""""""""""""""""""""""""""""""
 """"""""""""""""""""""""""""""""""""""""""""""""""""""""
 
 
+function! StartUp()
+    " start NERDTree if vim called with no arguments
+    if 0 == argc()
+        NERDTree
+    end
+endfunction
+
 function! FoldText()
 function! FoldText()
     let line = getline(v:foldstart)
     let line = getline(v:foldstart)
     let indent = indent(v:foldstart)
     let indent = indent(v:foldstart)