mirror of
https://github.com/Matir/skel.git
synced 2026-05-26 05:29:09 -07:00
Non-conf dotfiles, v1.
This commit is contained in:
28
vimrc
Normal file
28
vimrc
Normal file
@@ -0,0 +1,28 @@
|
||||
" Allow full use of vim options
|
||||
set nocompatible
|
||||
" Autoindentation
|
||||
set autoindent
|
||||
" Use same indentation style as above file
|
||||
set copyindent
|
||||
" Proper tabs
|
||||
set tabstop=2
|
||||
set softtabstop=2
|
||||
set shiftwidth=2
|
||||
set expandtab
|
||||
" Display cursor position
|
||||
set ruler
|
||||
" Syntax highlighting and file types
|
||||
syntax on
|
||||
filetype plugin indent on
|
||||
" Allow file modelines
|
||||
set modeline
|
||||
" Automatically re-read changed files
|
||||
set autoread
|
||||
" fsync() after writing files
|
||||
set fsync
|
||||
" Line numbering
|
||||
set number
|
||||
" Round indentation to multiple of shiftwidth
|
||||
set shiftround
|
||||
" Text width 80
|
||||
set textwidth=80
|
||||
Reference in New Issue
Block a user