Dotfiles/.vimrc

30 lines
457 B
VimL
Raw Normal View History

" Supported by almost all vi implementations.
set autoindent
set number
set ruler
set tabstop=4
set shiftwidth=4
set expandtab
set showmatch
set exrc
" Supported only by vim. If running a non-vim vi, remove all comments
" and everything below this line.
2024-01-09 23:09:26 +00:00
set compatible " Be compatible with vi.
set fileformat=unix
set encoding=UTF-8
set syntax=on
set colorcolumn=72,80,100
2024-01-09 23:09:26 +00:00
set autoread
set spell
set ignorecase
set smartcase
set showcmd
set showmode