Created
October 17, 2019 08:21
-
-
Save CzBiX/e0be6b1f70e0df4bfcc4435c82cdbeb2 to your computer and use it in GitHub Desktop.
vimrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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