dotfiles/vim/vimrc.symlink

21 lines
516 B
Plaintext
Raw Normal View History

2013-01-29 20:41:03 +01:00
if has("autocmd")
filetype on
filetype indent on
filetype plugin on
endif
syntax on
set number
set runtimepath=~/dotfiles/vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,~/dotfiles/vim/after
2013-07-20 17:21:21 +02:00
" " colors distinguished
2013-01-29 20:41:03 +01:00
set mouse=a
set statusline=%F%m%r%h%w\ (%{&ff}){%Y}\ [%l,%v][%p%%]
set showcmd
set incsearch
set hlsearch
set ignorecase
set smartcase
2013-07-20 17:21:21 +02:00
set laststatus=2 " Always display the statusline in all windows
set noshowmode " Hide the default mode text (e.g. -- INSERT -- below the statusline)