.vimrc
changeset 609 0474cf9957c9
parent 608 817b345c30a5
child 925 8a010eb167ff
equal deleted inserted replaced
608:817b345c30a5 609:0474cf9957c9
    25 " Set command string height.
    25 " Set command string height.
    26 set ch=1
    26 set ch=1
    27 
    27 
    28 " Highlight line with cursor.
    28 " Highlight line with cursor.
    29 set cursorline
    29 set cursorline
       
    30 " Show long lines...
       
    31 set colorcolumn=120
    30 
    32 
    31 " Hide buffers instead of closing them.
    33 " Hide buffers instead of closing them.
    32 set hidden
    34 set hidden
    33 
    35 
    34 set mouse=a
    36 set mouse=a
    63 " Turn on incremental search with ignore case (except explicit caps).
    65 " Turn on incremental search with ignore case (except explicit caps).
    64 set incsearch
    66 set incsearch
    65 set ignorecase
    67 set ignorecase
    66 set smartcase
    68 set smartcase
    67 set hlsearch
    69 set hlsearch
       
    70 
       
    71 " Substitude all matches in line.
       
    72 set gdefault
       
    73 nnoremap / /\v
       
    74 vnoremap / /\v
    68 
    75 
    69 " Beep instead of blink.
    76 " Beep instead of blink.
    70 set novisualbell
    77 set novisualbell
    71 set noerrorbells
    78 set noerrorbells
    72 
    79