Skip to content

Instantly share code, notes, and snippets.

@plagelao
Created February 27, 2011 17:12
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 plagelao/846334 to your computer and use it in GitHub Desktop.
Save plagelao/846334 to your computer and use it in GitHub Desktop.
Presentation, colors and syntax
" file syntax color on
syntax on
filetype on " enable file type detection
" colors
set t_Co=256 " use 256 colors
" show when you are in insert or visual mode
set showmode
" highlight the line containing the cursor
set cursorline
" show unwanted whitespace
set listchars=tab:-✈,trail:,extends:>
set list!
" fast terminal connection
set ttyfast
" show line numbers
set number
" status line
set showcmd " show status line
set laststatus=2 " show the status line always
set statusline=%f\ %(%m%r%h\ %)%([%Y]%)%=%<%-20{getcwd()}\ [b%n]\ %l/%L\ ~\ %p%%\ \
colorscheme tir_black " set color scheme
:colorscheme {your_color_scheme_name}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment