Skip to content

Instantly share code, notes, and snippets.

@CzBiX
Created October 17, 2019 08:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CzBiX/e0be6b1f70e0df4bfcc4435c82cdbeb2 to your computer and use it in GitHub Desktop.
Save CzBiX/e0be6b1f70e0df4bfcc4435c82cdbeb2 to your computer and use it in GitHub Desktop.
vimrc
" based on http://github.com/jferris/config_files/blob/master/vimrc
set nocompatible
set ruler
" display incomplete commands
set showcmd
" do incremental searching
set incsearch
set tabstop=2
set shiftwidth=2
set expandtab
" Always display the status line
"set laststatus=2
" Numbers
set number
"set numberwidth=5
" case only matters with mixed case expressions
set ignorecase
set smartcase
" Color scheme
colorscheme desert
" highlight current line
set cursorline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment