Skip to content

Commit

Permalink
init commit - yay
Browse files Browse the repository at this point in the history
  • Loading branch information
sefakilic committed Jan 20, 2012
0 parents commit 2cc8af0
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# ignore backup files
*~
6 changes: 6 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
my .vimrc file

I decided to build a .vimrc file from scratch instead of copying vimrc settings
of other vim users blindly.

Move vimrc file to your home directory as .vimrc
17 changes: 17 additions & 0 deletions vimrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
set tabstop=4 " Number of spaces that a <Tab> in the file counts for
set ruler " show the cursor position

set textwidth=80 " max width of text, longer line will be broken
set softtabstop=4 " Number of spaces that a <Tab> counts for while performing
" editing operations, like inserting a <Tab> or using <BS>
set expandtab " Use spaces instead of a <Tab>
set autoindent " autoindentation: copy indent from current line when
" starting a new line
set cindent " indentation for C/C++ file types

set backup " backup file

set hlsearch " highlight search
set incsearch " incremental search as you type


0 comments on commit 2cc8af0

Please sign in to comment.