Last active
March 6, 2018 12:37
-
-
Save notsobad/2005237 to your computer and use it in GitHub Desktop.
My working vim profile
This file contains 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
" My working vim profile | |
set nocompatible | |
set history=50 " keep 50 lines of command line history | |
set ruler " show the cursor position all the time | |
set showcmd " display incomplete commands | |
set incsearch " do incremental searching | |
syntax on | |
set hlsearch | |
color koehler | |
set autoindent | |
set nobk | |
set shiftwidth=4 | |
set softtabstop=4 | |
set tabstop=4 | |
set encoding=utf-8 | |
set helplang=cn | |
set number | |
set ttymouse=xterm2 | |
set hls | |
set ignorecase | |
set listchars=tab:>-,trail:- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment