Browse Source

Add '.vimrc'

master
artur 4 years ago
parent
commit
5d52f2ac5b
1 changed files with 33 additions and 0 deletions
  1. +33
    -0
      .vimrc

+ 33
- 0
.vimrc View File

@ -0,0 +1,33 @@
" Vim5 and later versions support syntax highlighting. Uncommenting the next
" line enables syntax highlighting by default.
syntax on
" Change the color scheme
colorscheme desert
" If using a dark background within the editing area and syntax highlighting
" turn on this option as well
set background=dark
" Uncomment the following to have Vim jump to the last position when
" reopening a file
if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
endif
set autowrite
set backspace=indent,eol,start
set encoding=utf8
set expandtab
set hidden
set hlsearch
set ignorecase
set incsearch
set nocompatible
set shiftwidth=4
set showcmd
set showmatch
set smartindent
set smarttab
set tabstop=4
set title

Loading…
Cancel
Save