diff options
-rw-r--r-- | lib/vimrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6,7 +6,7 @@ set encoding=utf-8 " Set encoding set expandtab " Use spaces instead of tabs set formatoptions+=j " Delete comment character when joining commented lines set hlsearch " Highlight all search results -set laststatus=2 " Always status line +set laststatus=1 " show status line only during split windows set ignorecase " Ignore cases when searching set incsearch " Incremental search set linebreak " Break lines at word (requires Wrap lines) @@ -18,6 +18,7 @@ set smartcase " Better searching btw cases set smartindent " Autoindent when starting a new line set smarttab " Tab insertion & deletion set tabstop=4 " One tab = 4 spaces +set title " set window title to name of the file being edited set textwidth=80 " Line wrap (number of cols) set visualbell " Use visual bell (no beeping) set wildmenu " Helpful completion menu |