Skip to content

Instantly share code, notes, and snippets.

@fay
Created September 9, 2011 07:42
Show Gist options
  • Save fay/1205694 to your computer and use it in GitHub Desktop.
Save fay/1205694 to your computer and use it in GitHub Desktop.
vimrc settings
" set tab to 4 space
set smartindent
set expandtab
set tabstop=4
set shiftwidth=4
" display line number
set nu
" display tab and space as some other remarkable characters
set list
set listchars=tab:>.,trail:.
" tab navigation
nmap <C-j> :tabprev<CR>
nmap <C-k> :tabnext<CR>
@n2n3
Copy link

n2n3 commented Oct 26, 2011

set list listchars=tab:\➜\ ,trail:·,nbsp:-

@fay
Copy link
Author

fay commented Oct 26, 2011

:(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment