.vimrc
changeset 606 f21480ec9818
parent 547 ae98c70a1b57
child 607 db8b30e73baf
equal deleted inserted replaced
605:5b2d091de26d 606:f21480ec9818
    14   colorscheme delek
    14   colorscheme delek
    15 endif
    15 endif
    16 
    16 
    17 set sessionoptions=curdir,buffers,tabpages
    17 set sessionoptions=curdir,buffers,tabpages
    18 
    18 
    19 set showcmd  
    19 " Show mode in last line of screen.
       
    20 set showmode
       
    21 " Show last command in last line of screen.
       
    22 set showcmd
    20 " Do not show line numbers.
    23 " Do not show line numbers.
    21 set nonu
    24 set nonu
    22 " Set command string height.
    25 " Set command string height.
    23 set ch=1
    26 set ch=1
    24 
    27 
    58 set incsearch
    61 set incsearch
    59 set ignorecase
    62 set ignorecase
    60 set smartcase
    63 set smartcase
    61 set hlsearch
    64 set hlsearch
    62 
    65 
    63 " No audio or visual bell.
    66 " Beep instead of blink.
    64 set novisualbell
    67 set novisualbell
    65 set noerrorbells
    68 set noerrorbells
    66 
    69 
    67 " Have 3 lines of offset (or buffer) when scrolling.
    70 " Have 3 lines of offset (or buffer) when scrolling.
    68 set scrolloff=3
    71 set scrolloff=3
    69 " set scrolljump=3
    72 " set scrolljump=3
    70 
    73 
    71 " I find the toolbar in the GUI version of vim (gvim) to be somewhat useless
    74 " I find the toolbar in the GUI version of vim (gvim) to be somewhat useless
    72 " visual clutter. This option gets rid of the toolbar.
    75 " visual clutter. This option gets rid of the toolbar.
    73 set guioptions-=T
    76 set guioptions-=T
    74 
       
    75 
       
    76 " This setting prevents vi from making its annoying beeps when a command
       
    77 " doesn't work. Instead, it briefly flashes the screen -- much less annoying.
       
    78 set vb t_vb=
       
    79 
       
    80 
    77 
    81 " This setting ensures that each window contains a statusline that displays
    78 " This setting ensures that each window contains a statusline that displays
    82 " the current cursor position.
    79 " the current cursor position.
    83 set ruler
    80 set ruler
    84 
    81