1
0
forked from brl/citadel
citadel/meta-citadel/recipes-core/base-files/files/share/dot.vimrc

30 lines
1.2 KiB
Plaintext
Raw Normal View History

2018-03-18 19:24:30 -04:00
syntax on
set nocompatible
set hidden
set modeline
"
" Settings
"
set noerrorbells " No beeps
set backspace=indent,eol,start " Makes backspace key more powerful.
set showcmd " Show me what I'm typing
set showmode " Show current mode.
set noswapfile " Don't use swapfile
set nobackup " Don't create annoying backup files
set splitright " Split vertical windows right to the current windows
set splitbelow " Split horizontal windows below to the current windows
set encoding=utf-8 " Set default encoding to UTF-8
set autowrite " Automatically save before :next, :make etc.
set autoread " Automatically reread changed files without asking me anything
set nocursorcolumn
set lazyredraw " Wait to redraw "
set incsearch " Shows the match while typing
set hlsearch " Highlight found searches
set ignorecase " Search case insensitive...
set smartcase " ... but not when search pattern contains upper case characters
set ttyfast